diff options
author | jlam <jlam@pkgsrc.org> | 2001-07-14 12:37:45 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-07-14 12:37:45 +0000 |
commit | 70cf5e59c3324b99cef49f169c9a92ae5a81ac6a (patch) | |
tree | a4dbe1af92d6b8baf49064fb76e2cab16e4fb714 /graphics/libungif/Makefile | |
parent | bcb7296fe671c812745d61bbb59f8ff73a7f6e96 (diff) | |
download | pkgsrc-70cf5e59c3324b99cef49f169c9a92ae5a81ac6a.tar.gz |
Don't use find ... -print0 | xargs -0 ... as -0 isn't an acceptable option
on Solaris' xargs.
Diffstat (limited to 'graphics/libungif/Makefile')
-rw-r--r-- | graphics/libungif/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/libungif/Makefile b/graphics/libungif/Makefile index 8da892cc2c1..04da2d78532 100644 --- a/graphics/libungif/Makefile +++ b/graphics/libungif/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2001/06/19 04:08:42 jlam Exp $ +# $NetBSD: Makefile,v 1.17 2001/07/14 12:37:54 jlam Exp $ # DISTNAME= libungif-4.1.0 @@ -36,7 +36,7 @@ post-patch: # pre-build: ${TOUCH} ${WRKSRC}/aclocal.m4 - ${FIND} ${WRKSRC} -name "Makefile.in" -print0 | ${XARGS} -0 ${TOUCH} + ${FIND} ${WRKSRC} -name "Makefile.in" -print | ${XARGS} ${TOUCH} post-install: cd ${PREFIX}; \ |