summaryrefslogtreecommitdiff
path: root/lang/smalleiffel
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 /lang/smalleiffel
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 'lang/smalleiffel')
-rw-r--r--lang/smalleiffel/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/smalleiffel/Makefile b/lang/smalleiffel/Makefile
index 4697bf2c4b9..aa996007922 100644
--- a/lang/smalleiffel/Makefile
+++ b/lang/smalleiffel/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2001/05/19 03:56:37 jlam Exp $
+# $NetBSD: Makefile,v 1.13 2001/07/14 12:37:54 jlam Exp $
#
DISTNAME= ${PKGNAME:S/smalleiffel/se/}
@@ -23,7 +23,7 @@ LIBDIR= ${PREFIX}/share/smalleiffel
LIBEXECDIR= ${PREFIX}/libexec/smalleiffel
post-extract:
- ${FIND} ${WRKSRC} -type f -print0 | ${XARGS} -0 ${CHMOD} 644
+ ${FIND} ${WRKSRC} -type f -print | ${XARGS} ${CHMOD} 644
post-patch:
${CHMOD} +x ${WRKSRC}/misc/GC.SH
@@ -38,8 +38,8 @@ post-build:
pre-install:
${RM} -f ${WRKSRC}/sys/loadpath.*
- ${FIND} ${WRKSRC} -name ".gdb*" -print0 | ${XARGS} -0 ${RM} -f
- ${FIND} ${WRKSRC} -name "*.orig" -print0 | ${XARGS} -0 ${RM} -f
+ ${FIND} ${WRKSRC} -name ".gdb*" -print | ${XARGS} ${RM} -f
+ ${FIND} ${WRKSRC} -name "*.orig" -print | ${XARGS} ${RM} -f
do-install:
${INSTALL_SCRIPT} ${WRKDIR}/smalleiffel.sh ${PREFIX}/bin/smalleiffel