diff options
author | jlam <jlam@pkgsrc.org> | 2001-05-19 03:56:23 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-05-19 03:56:23 +0000 |
commit | dc6eadbf21d06496bbf555e397f79622e3e20821 (patch) | |
tree | 35829def2637f8f91ecdb3daaeecb1424685adf2 /lang/smalleiffel | |
parent | 85e58afe750871e5736c21a64b0afaca5fd17ca7 (diff) | |
download | pkgsrc-dc6eadbf21d06496bbf555e397f79622e3e20821.tar.gz |
Use ${XARGS} instead of invoking xargs directly.
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 d5da81b7a02..4697bf2c4b9 100644 --- a/lang/smalleiffel/Makefile +++ b/lang/smalleiffel/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2001/02/27 21:36:07 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2001/05/19 03:56:37 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 -print0 | ${XARGS} -0 ${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*" -print0 | ${XARGS} -0 ${RM} -f + ${FIND} ${WRKSRC} -name "*.orig" -print0 | ${XARGS} -0 ${RM} -f do-install: ${INSTALL_SCRIPT} ${WRKDIR}/smalleiffel.sh ${PREFIX}/bin/smalleiffel |