summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorhans <hans@pkgsrc.org>2012-02-02 09:48:42 +0000
committerhans <hans@pkgsrc.org>2012-02-02 09:48:42 +0000
commita64700284ae8307385ce17d1d6803136757a37d6 (patch)
tree75f32bc3a986dfecbbe18e8586c246f83dd4ac7a /www
parent12a6f3e01d2a7e67b65005ffa503b15f6fa14ca6 (diff)
downloadpkgsrc-a64700284ae8307385ce17d1d6803136757a37d6.tar.gz
Use ${RM} -f to avoid failure if no files are found to be removed.
Diffstat (limited to 'www')
-rw-r--r--www/p5-CGI-FormBuilder/Makefile4
-rw-r--r--www/p5-HTTP-Request-Form/Makefile4
-rw-r--r--www/p5-LWP-Authen-Negotiate/Makefile4
-rw-r--r--www/p5-Template-Toolkit/Makefile4
-rw-r--r--www/yaws/Makefile4
-rw-r--r--www/zope210/Makefile4
-rw-r--r--www/zope211/Makefile4
-rw-r--r--www/zope29/Makefile4
8 files changed, 16 insertions, 16 deletions
diff --git a/www/p5-CGI-FormBuilder/Makefile b/www/p5-CGI-FormBuilder/Makefile
index 7f93d1274e9..bc22e6fa4d8 100644
--- a/www/p5-CGI-FormBuilder/Makefile
+++ b/www/p5-CGI-FormBuilder/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.16 2011/08/14 16:05:45 obache Exp $
+# $NetBSD: Makefile,v 1.17 2012/02/02 09:48:42 hans Exp $
DISTNAME= CGI-FormBuilder-3.0501
PKGNAME= p5-${DISTNAME}
@@ -20,7 +20,7 @@ DEPENDS+= p5-Text-Template>=1.43:../../textproc/p5-Text-Template
#DEPENDS+= p5-Template-Toolkit>=2.08:../../www/p5-Template-Toolkit
pre-configure:
- ${FIND} ${WRKSRC} -name "*.orig" -type f | ${XARGS} ${RM}
+ ${FIND} ${WRKSRC} -name "*.orig" -type f | ${XARGS} ${RM} -f
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/www/p5-HTTP-Request-Form/Makefile b/www/p5-HTTP-Request-Form/Makefile
index 4bdd0ea0fec..b37d060568b 100644
--- a/www/p5-HTTP-Request-Form/Makefile
+++ b/www/p5-HTTP-Request-Form/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.22 2011/08/14 16:05:58 obache Exp $
+# $NetBSD: Makefile,v 1.23 2012/02/02 09:50:07 hans Exp $
#
DISTNAME= HTTP-Request-Form-0.952
@@ -21,7 +21,7 @@ DEPENDS+= p5-HTML-Tree-[0-9]*:../../www/p5-HTML-Tree
PERL5_PACKLIST= auto/HTTP/Request/Form/.packlist
pre-configure:
- ${FIND} ${WRKSRC} -name "*.orig" -type f | ${XARGS} ${RM}
+ ${FIND} ${WRKSRC} -name "*.orig" -type f | ${XARGS} ${RM} -f
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/www/p5-LWP-Authen-Negotiate/Makefile b/www/p5-LWP-Authen-Negotiate/Makefile
index 46653ed15ea..5c5a674b6a6 100644
--- a/www/p5-LWP-Authen-Negotiate/Makefile
+++ b/www/p5-LWP-Authen-Negotiate/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2011/08/14 16:06:03 obache Exp $
+# $NetBSD: Makefile,v 1.9 2012/02/02 09:51:14 hans Exp $
DISTNAME= LWP-Authen-Negotiate-0.08
PKGNAME= p5-${DISTNAME}
@@ -20,7 +20,7 @@ DEPENDS+= {perl>=5.10,p5-MIME-Base64>=2.12}:../../converters/p5-MIME-Base64
PERL5_PACKLIST= auto/LWP/Authen/Negotiate/.packlist
pre-configure:
- ${FIND} ${WRKSRC} -name "*.orig" -type f | ${XARGS} ${RM}
+ ${FIND} ${WRKSRC} -name "*.orig" -type f | ${XARGS} ${RM} -f
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/www/p5-Template-Toolkit/Makefile b/www/p5-Template-Toolkit/Makefile
index c2d5f79227b..897f42dae3f 100644
--- a/www/p5-Template-Toolkit/Makefile
+++ b/www/p5-Template-Toolkit/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.36 2012/01/22 19:38:54 abs Exp $
+# $NetBSD: Makefile,v 1.37 2012/02/02 09:52:40 hans Exp $
DISTNAME= Template-Toolkit-2.23
PKGNAME= p5-${DISTNAME}
@@ -24,7 +24,7 @@ MAKE_PARAMS= TT_ACCEPT=y
PKG_DESTDIR_SUPPORT= user-destdir
pre-configure:
- ${FIND} ${WRKSRC} -name "*.orig" -type f | ${XARGS} ${RM}
+ ${FIND} ${WRKSRC} -name "*.orig" -type f | ${XARGS} ${RM} -f
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/www/yaws/Makefile b/www/yaws/Makefile
index a5ec3074338..44189e6b4c8 100644
--- a/www/yaws/Makefile
+++ b/www/yaws/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 2011/08/26 13:46:43 cheusov Exp $
+# $NetBSD: Makefile,v 1.2 2012/02/02 09:55:25 hans Exp $
#
DISTNAME= yaws-1.91
@@ -46,7 +46,7 @@ post-patch:
${RM} ${WRKDIR}/yaws
${RM} -Rf ${WRKSRC}/www/.xvpics
${RM} -Rf ${WRKSRC}/www/testdir
- ${FIND} ${WRKSRC} -name \*.orig -o -name .empty | ${XARGS} ${RM}
+ ${FIND} ${WRKSRC} -name \*.orig -o -name .empty | ${XARGS} ${RM} -f
pre-configure:
cd ${WRKSRC} && autoconf
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
diff --git a/www/zope211/Makefile b/www/zope211/Makefile
index 247e1cdb8d0..2ec0a7f199c 100644
--- a/www/zope211/Makefile
+++ b/www/zope211/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2011/11/11 18:48:24 joerg Exp $
+# $NetBSD: Makefile,v 1.8 2012/02/02 09:56:53 hans Exp $
#
DISTNAME= Zope-${ZOPE211_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
diff --git a/www/zope29/Makefile b/www/zope29/Makefile
index 0af69e3c9d4..8c9d282406b 100644
--- a/www/zope29/Makefile
+++ b/www/zope29/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.24 2011/11/11 18:48:24 joerg Exp $
+# $NetBSD: Makefile,v 1.25 2012/02/02 09:58:07 hans Exp $
# FreeBSD Id: ports/www/zope29/Makefile,v 1.86 2006/08/03 15:53:04 garga Exp
DISTNAME= Zope-${ZOPE29_VERSION}-final
@@ -77,7 +77,7 @@ post-build:
cd ${WRKSRC}; ${PY_COMPILE_ALL} .
pre-install:
- ${FIND} ${WRKSRC} -name '*.orig' -print | ${XARGS} -- ${RM}
+ ${FIND} ${WRKSRC} -name '*.orig' -print | ${XARGS} -- ${RM} -f
post-install:
cd ${WRKSRC}/doc/ZEO; pax -rw *.txt ${DESTDIR}${ZOPE_DOC_DIR}/zeo