diff options
author | hans <hans@pkgsrc.org> | 2012-02-02 09:48:42 +0000 |
---|---|---|
committer | hans <hans@pkgsrc.org> | 2012-02-02 09:48:42 +0000 |
commit | a64700284ae8307385ce17d1d6803136757a37d6 (patch) | |
tree | 75f32bc3a986dfecbbe18e8586c246f83dd4ac7a /www/zope210 | |
parent | 12a6f3e01d2a7e67b65005ffa503b15f6fa14ca6 (diff) | |
download | pkgsrc-a64700284ae8307385ce17d1d6803136757a37d6.tar.gz |
Use ${RM} -f to avoid failure if no files are found to be removed.
Diffstat (limited to 'www/zope210')
-rw-r--r-- | www/zope210/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/zope210/Makefile b/www/zope210/Makefile index 385046fe3b9..1370ea70780 100644 --- a/www/zope210/Makefile +++ b/www/zope210/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2011/11/11 18:46:58 joerg Exp $ +# $NetBSD: Makefile,v 1.12 2012/02/02 09:57:27 hans Exp $ # FreeBSD Id: ports/www/zope29/Makefile,v 1.86 2006/08/03 15:53:04 garga Exp DISTNAME= Zope-${ZOPE210_VERSION}-final @@ -82,7 +82,7 @@ post-build: pre-install: ${FIND} ${WRKSRC} \( -name '*.orig' -o -name svn-commit.tmp \) \ - -print | ${XARGS} -- ${RM} + -print | ${XARGS} -- ${RM} -f post-install: cd ${WRKSRC}/doc/ZEO; pax -rw *.txt ${DESTDIR}${ZOPE_DOC_DIR}/zeo |