diff options
author | hans <hans> | 2012-02-02 09:38:24 +0000 |
---|---|---|
committer | hans <hans> | 2012-02-02 09:38:24 +0000 |
commit | 952cc78e05fd30566cc0e32f2aa000d506593a38 (patch) | |
tree | ffb646e0970f4006249b198a0cf23164d568ecbc /net/p5-eBay-API | |
parent | d9a5193a5fd2a47db4450e9eae36ac1fafc20c2e (diff) | |
download | pkgsrc-952cc78e05fd30566cc0e32f2aa000d506593a38.tar.gz |
Use ${RM} -f to avoid failure if no files are found to be removed.
Diffstat (limited to 'net/p5-eBay-API')
-rw-r--r-- | net/p5-eBay-API/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/p5-eBay-API/Makefile b/net/p5-eBay-API/Makefile index 45f3a48f5b7..3a72e3d02f8 100644 --- a/net/p5-eBay-API/Makefile +++ b/net/p5-eBay-API/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2011/08/14 14:14:50 obache Exp $ +# $NetBSD: Makefile,v 1.8 2012/02/02 09:38:24 hans Exp $ DISTNAME= eBay-API-0.25 PKGNAME= p5-${DISTNAME} @@ -35,7 +35,7 @@ REPLACE_PERL+= */*/*/*/*/*/*/*.pm PERL5_PACKLIST= auto/eBay/API/.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" |