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 | 12a6f3e01d2a7e67b65005ffa503b15f6fa14ca6 (patch) | |
tree | ffb646e0970f4006249b198a0cf23164d568ecbc /textproc | |
parent | cb2a29ecb37367aa41cd4fc7a849cf4e8161918f (diff) | |
download | pkgsrc-12a6f3e01d2a7e67b65005ffa503b15f6fa14ca6.tar.gz |
Use ${RM} -f to avoid failure if no files are found to be removed.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/p5-Text-WrapI18N/Makefile | 4 | ||||
-rw-r--r-- | textproc/p5-XML-SAX/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/textproc/p5-Text-WrapI18N/Makefile b/textproc/p5-Text-WrapI18N/Makefile index 3079e6e76ba..0eb125cd401 100644 --- a/textproc/p5-Text-WrapI18N/Makefile +++ b/textproc/p5-Text-WrapI18N/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2011/08/14 15:14:15 obache Exp $ +# $NetBSD: Makefile,v 1.10 2012/02/02 09:44:58 hans Exp $ DISTNAME= Text-WrapI18N-0.06 PKGNAME= p5-${DISTNAME} @@ -18,7 +18,7 @@ USE_LANGUAGES= # empty PERL5_PACKLIST= auto/Text/WrapI18N/.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" diff --git a/textproc/p5-XML-SAX/Makefile b/textproc/p5-XML-SAX/Makefile index 1cc62720576..47c5b1bbe6a 100644 --- a/textproc/p5-XML-SAX/Makefile +++ b/textproc/p5-XML-SAX/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.32 2011/08/14 15:14:20 obache Exp $ +# $NetBSD: Makefile,v 1.33 2012/02/02 09:46:01 hans Exp $ DISTNAME= XML-SAX-0.96 PKGNAME= p5-${DISTNAME} @@ -31,7 +31,7 @@ PERL5_PACKLIST= auto/XML/SAX/.packlist INSTALLATION_DIRS+= ${EGSUBDIR} pre-configure: - ${FIND} ${WRKSRC} -name "*.orig" -type f | ${XARGS} ${RM} + ${FIND} ${WRKSRC} -name "*.orig" -type f | ${XARGS} ${RM} -f post-install: ${ECHO} > ${DESTDIR:Q}${PREFIX:Q}/${EGSUBDIR}/ParserDetails.ini |