summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authorsketch <sketch>2003-12-16 11:30:57 +0000
committersketch <sketch>2003-12-16 11:30:57 +0000
commit4ceb6f4943518eae6c6e94559dea1d096f8cb6aa (patch)
tree8ba5af7dc325fca27a9c3c57ca5ae989f49a7f04 /textproc
parent1e785f437cb9e1a2f7c6ae4971b5d4917ce99ec7 (diff)
downloadpkgsrc-4ceb6f4943518eae6c6e94559dea1d096f8cb6aa.tar.gz
Don't rely on xargs behaviour to pass arguments correctly to rm, instead
execute if necessary directly from find. Fixes breakage on systems which output "blah" from $(echo | xargs echo "blah") (Solaris, Linux, ..)
Diffstat (limited to 'textproc')
-rw-r--r--textproc/jade/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/jade/Makefile b/textproc/jade/Makefile
index 495898f7062..a8c4b62e71a 100644
--- a/textproc/jade/Makefile
+++ b/textproc/jade/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.27 2003/07/13 13:53:33 wiz Exp $
+# $NetBSD: Makefile,v 1.28 2003/12/16 11:30:57 sketch Exp $
DISTNAME= jade-1.2.1
PKGREVISION= 7
@@ -32,7 +32,7 @@ CXXFLAGS+= ${CFLAGS}
post-patch:
@${CHMOD} -R +w ${WRKSRC}
- @${FIND} ${WRKSRC} -name '*.orig' -size 0c -type f | ${XARGS} ${RM}
+ @${FIND} ${WRKSRC} -name '*.orig' -size 0c -type f -exec ${RM} {} \;
post-install:
@for prog in jade nsgmls sgmlnorm spam spent sx; do \