diff options
author | hans <hans@pkgsrc.org> | 2012-02-02 09:48:42 +0000 |
---|---|---|
committer | hans <hans@pkgsrc.org> | 2012-02-02 09:48:42 +0000 |
commit | a64700284ae8307385ce17d1d6803136757a37d6 (patch) | |
tree | 75f32bc3a986dfecbbe18e8586c246f83dd4ac7a /x11/p5-Tk | |
parent | 12a6f3e01d2a7e67b65005ffa503b15f6fa14ca6 (diff) | |
download | pkgsrc-a64700284ae8307385ce17d1d6803136757a37d6.tar.gz |
Use ${RM} -f to avoid failure if no files are found to be removed.
Diffstat (limited to 'x11/p5-Tk')
-rw-r--r-- | x11/p5-Tk/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/p5-Tk/Makefile b/x11/p5-Tk/Makefile index 1ab12f32e3d..19420e64b13 100644 --- a/x11/p5-Tk/Makefile +++ b/x11/p5-Tk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.73 2012/01/22 19:00:34 abs Exp $ +# $NetBSD: Makefile,v 1.74 2012/02/02 09:53:44 hans Exp $ DISTNAME= Tk-804.030 PKGNAME= p5-${DISTNAME} @@ -33,7 +33,7 @@ SUBST_FILES.prefix= PNG/Makefile.PL SUBST_SED.prefix= -e 's,%%LOCALBASE%%,${LOCALBASE},g' pre-configure: - ${FIND} ${WRKSRC} -name "*.orig" -type f -print0 | ${XARGS} -0 ${RM} + ${FIND} ${WRKSRC} -name "*.orig" -type f -print0 | ${XARGS} -0 ${RM} -f .include "../../lang/perl5/module.mk" .include "../../graphics/png/buildlink3.mk" |