diff options
author | hans <hans@pkgsrc.org> | 2012-02-02 09:38:24 +0000 |
---|---|---|
committer | hans <hans@pkgsrc.org> | 2012-02-02 09:38:24 +0000 |
commit | 784f002989955ef83d4ef43fcc527fd485f4db1f (patch) | |
tree | ffb646e0970f4006249b198a0cf23164d568ecbc /security | |
parent | 292499a235de6979aaff59f9a9196fbfb06bacc9 (diff) | |
download | pkgsrc-784f002989955ef83d4ef43fcc527fd485f4db1f.tar.gz |
Use ${RM} -f to avoid failure if no files are found to be removed.
Diffstat (limited to 'security')
-rw-r--r-- | security/p5-Crypt-DSA/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/p5-Crypt-DSA/Makefile b/security/p5-Crypt-DSA/Makefile index 1c5d2b573ef..8dd4b210762 100644 --- a/security/p5-Crypt-DSA/Makefile +++ b/security/p5-Crypt-DSA/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2011/10/06 19:22:02 gls Exp $ +# $NetBSD: Makefile,v 1.26 2012/02/02 09:43:40 hans Exp $ # DISTNAME= Crypt-DSA-1.17 @@ -24,7 +24,7 @@ USE_LANGUAGES= # empty PERL5_PACKLIST= auto/Crypt/DSA/.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" |