diff options
author | hans <hans@pkgsrc.org> | 2012-02-02 09:59:39 +0000 |
---|---|---|
committer | hans <hans@pkgsrc.org> | 2012-02-02 09:59:39 +0000 |
commit | 3d879ebc58e8edd3ceff23c701d1c797495f9501 (patch) | |
tree | d49b31a0534e46c79d1e05e55fcb3289d1e2ec85 | |
parent | a64700284ae8307385ce17d1d6803136757a37d6 (diff) | |
download | pkgsrc-3d879ebc58e8edd3ceff23c701d1c797495f9501.tar.gz |
Use ${RM} -f to avoid failure if no files are found to be removed.
-rw-r--r-- | devel/mantis/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/mantis/Makefile b/devel/mantis/Makefile index b19d30cccd2..7d6fc66f9fe 100644 --- a/devel/mantis/Makefile +++ b/devel/mantis/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2011/09/16 05:46:24 obache Exp $ +# $NetBSD: Makefile,v 1.38 2012/02/02 09:59:39 hans Exp $ DISTNAME= mantisbt-1.1.7 PKGNAME= ${DISTNAME:S/mantisbt/mantis/} @@ -66,7 +66,7 @@ do-install: ${RM} ${WRKSRC}/${f} . endfor - cd ${WRKSRC} && ${FIND} . -name .cvsignore -print | ${XARGS} ${RM} + cd ${WRKSRC} && ${FIND} . -name .cvsignore -print | ${XARGS} ${RM} -f cd ${WRKSRC} && pax -rwpppm . ${DESTDIR}${MANTIS_HOME} cd ${DESTDIR}${MANTIS_HOME} && \ |