diff options
Diffstat (limited to 'lang/smalleiffel')
-rw-r--r-- | lang/smalleiffel/Makefile | 8 |
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 |