diff options
author | jlam <jlam> | 2001-07-14 12:37:45 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-07-14 12:37:45 +0000 |
commit | a1b0e161f931b5b4af723d25fdc3fd5f10794786 (patch) | |
tree | a4dbe1af92d6b8baf49064fb76e2cab16e4fb714 /audio/festvox-en1/Makefile | |
parent | 0d55958b50d40c9122913a0b1c6f1bc56e82e9c5 (diff) | |
download | pkgsrc-a1b0e161f931b5b4af723d25fdc3fd5f10794786.tar.gz |
Don't use find ... -print0 | xargs -0 ... as -0 isn't an acceptable option
on Solaris' xargs.
Diffstat (limited to 'audio/festvox-en1/Makefile')
-rw-r--r-- | audio/festvox-en1/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/festvox-en1/Makefile b/audio/festvox-en1/Makefile index 0698b438b38..3143d1b8d5a 100644 --- a/audio/festvox-en1/Makefile +++ b/audio/festvox-en1/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2001/05/19 03:56:26 jlam Exp $ +# $NetBSD: Makefile,v 1.13 2001/07/14 12:37:48 jlam Exp $ DISTNAME= festvox_en1 PKGNAME= festvox-en1-1.4.0 @@ -27,7 +27,7 @@ ONLY_FOR_PLATFORM= NetBSD-*-i386 post-extract: @ ${CHMOD} -R a+r ${WRKSRC} - @ ${FIND} ${WRKSRC} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 + @ ${FIND} ${WRKSRC} -type d -print | ${XARGS} ${CHMOD} 755 do-install: cd ${WRKSRC} && ${PAX} -r -w * ${FHOME} |