diff options
author | hans <hans> | 2012-02-02 09:48:42 +0000 |
---|---|---|
committer | hans <hans> | 2012-02-02 09:48:42 +0000 |
commit | 4a6c3dda63bf8da9cb557cee567957f4ba932649 (patch) | |
tree | 75f32bc3a986dfecbbe18e8586c246f83dd4ac7a /www/p5-LWP-Authen-Negotiate | |
parent | 952cc78e05fd30566cc0e32f2aa000d506593a38 (diff) | |
download | pkgsrc-4a6c3dda63bf8da9cb557cee567957f4ba932649.tar.gz |
Use ${RM} -f to avoid failure if no files are found to be removed.
Diffstat (limited to 'www/p5-LWP-Authen-Negotiate')
-rw-r--r-- | www/p5-LWP-Authen-Negotiate/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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" |