summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2001-07-14 12:37:45 +0000
committerjlam <jlam@pkgsrc.org>2001-07-14 12:37:45 +0000
commit70cf5e59c3324b99cef49f169c9a92ae5a81ac6a (patch)
treea4dbe1af92d6b8baf49064fb76e2cab16e4fb714 /chat
parentbcb7296fe671c812745d61bbb59f8ff73a7f6e96 (diff)
downloadpkgsrc-70cf5e59c3324b99cef49f169c9a92ae5a81ac6a.tar.gz
Don't use find ... -print0 | xargs -0 ... as -0 isn't an acceptable option
on Solaris' xargs.
Diffstat (limited to 'chat')
-rw-r--r--chat/bitchx/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/chat/bitchx/Makefile b/chat/bitchx/Makefile
index c9f6abdb7cd..a97f7a9097e 100644
--- a/chat/bitchx/Makefile
+++ b/chat/bitchx/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2001/06/23 19:26:49 jlam Exp $
+# $NetBSD: Makefile,v 1.7 2001/07/14 12:37:53 jlam Exp $
DISTNAME= ircii-pana-1.0c18
PKGNAME= bitchx-1.0.3.18
@@ -29,8 +29,8 @@ DEPENDS+= bzip2-0.9.0b:../../archivers/bzip2
# installed later on; ignore error code, since we delete the directories
# before find can descend into them.
post-extract:
- ( ${FIND} ${WRKDIR}/BitchX/bitchx-docs -type d -name CVS -print0 \
- | ${XARGS} -0 ${RM} -rf ) 2>/dev/null
+ ( ${FIND} ${WRKDIR}/BitchX/bitchx-docs -type d -name CVS -print \
+ | ${XARGS} ${RM} -rf ) 2>/dev/null
# The WANT_NOTIFY_BITCHX_COM message after configure is misleading, we
# disable this by default.