From b7cf1822c25e35e1865d910d0641ac008b2bf26f Mon Sep 17 00:00:00 2001 From: jlam Date: Sat, 14 Jul 2001 12:37:45 +0000 Subject: Don't use find ... -print0 | xargs -0 ... as -0 isn't an acceptable option on Solaris' xargs. --- chat/bitchx/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chat/bitchx') 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. -- cgit v1.2.3