diff options
author | hans <hans> | 2012-02-02 09:26:17 +0000 |
---|---|---|
committer | hans <hans> | 2012-02-02 09:26:17 +0000 |
commit | d9a5193a5fd2a47db4450e9eae36ac1fafc20c2e (patch) | |
tree | 864658dc308077522537dee4cb0b6b2cea611621 /mail/p5-Mail-Ezmlm | |
parent | 9c06e4eb7f3ddbd8cace7d17bd2ca0831f831d2b (diff) | |
download | pkgsrc-d9a5193a5fd2a47db4450e9eae36ac1fafc20c2e.tar.gz |
Use ${RM} -f to avoid failure if no files are found to be removed.
Diffstat (limited to 'mail/p5-Mail-Ezmlm')
-rw-r--r-- | mail/p5-Mail-Ezmlm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/p5-Mail-Ezmlm/Makefile b/mail/p5-Mail-Ezmlm/Makefile index 477c0118766..01bde5ffd22 100644 --- a/mail/p5-Mail-Ezmlm/Makefile +++ b/mail/p5-Mail-Ezmlm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2011/08/14 13:25:26 obache Exp $ +# $NetBSD: Makefile,v 1.10 2012/02/02 09:36:13 hans Exp $ # DISTNAME= Ezmlm-0.07.2 @@ -30,7 +30,7 @@ PERL5_PACKLIST= auto/Mail/Ezmlm/.packlist BUILD_DEFS+= QMAILDIR 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" |