Thu Feb 2 09:38:24 2012 UTC ()
Use ${RM} -f to avoid failure if no files are found to be removed.


(hans)
diff -r1.7 -r1.8 pkgsrc/net/p5-eBay-API/Makefile

cvs diff -r1.7 -r1.8 pkgsrc/net/p5-eBay-API/Attic/Makefile (expand / switch to context diff)
--- pkgsrc/net/p5-eBay-API/Attic/Makefile 2011/08/14 14:14:50 1.7
+++ pkgsrc/net/p5-eBay-API/Attic/Makefile 2012/02/02 09:38:24 1.8
@@ -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 @@
 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"