pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/x11/p5-Tk Don't use -print0 / -0 in find | xargs, it w...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/ba7aa72f8c8e
branches:  trunk
changeset: 601498:ba7aa72f8c8e
user:      hans <hans%pkgsrc.org@localhost>
date:      Wed Mar 21 18:58:00 2012 +0000

description:
Don't use -print0 / -0 in find | xargs, it works well without it.

diffstat:

 x11/p5-Tk/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r b552d18ffeef -r ba7aa72f8c8e x11/p5-Tk/Makefile
--- a/x11/p5-Tk/Makefile        Wed Mar 21 18:52:09 2012 +0000
+++ b/x11/p5-Tk/Makefile        Wed Mar 21 18:58:00 2012 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.74 2012/02/02 09:53:44 hans Exp $
+# $NetBSD: Makefile,v 1.75 2012/03/21 18:58:00 hans Exp $
 
 DISTNAME=      Tk-804.030
 PKGNAME=       p5-${DISTNAME}
@@ -33,7 +33,7 @@
 SUBST_SED.prefix=      -e 's,%%LOCALBASE%%,${LOCALBASE},g'
 
 pre-configure:
-       ${FIND} ${WRKSRC} -name "*.orig" -type f -print0 | ${XARGS} -0 ${RM} -f
+       ${FIND} ${WRKSRC} -name "*.orig" -type f | ${XARGS} ${RM} -f
 
 .include "../../lang/perl5/module.mk"
 .include "../../graphics/png/buildlink3.mk"



Home | Main Index | Thread Index | Old Index