summaryrefslogtreecommitdiff
path: root/textproc/jade
diff options
context:
space:
mode:
authorsketch <sketch>2003-12-16 11:30:57 +0000
committersketch <sketch>2003-12-16 11:30:57 +0000
commit3f61634a8be2d10ca4eb686dbffab83d4925fa45 (patch)
tree8ba5af7dc325fca27a9c3c57ca5ae989f49a7f04 /textproc/jade
parente37a0965f94d1df2534d6f30784736e0b1873476 (diff)
downloadpkgsrc-3f61634a8be2d10ca4eb686dbffab83d4925fa45.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/jade')
-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 \