diff options
author | tv <tv@pkgsrc.org> | 2006-11-10 17:34:09 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2006-11-10 17:34:09 +0000 |
commit | 25a40248061d30e97c0e11465713e8ddca785bf3 (patch) | |
tree | d14029e2529c2e6d34dc0be3357cb0bc70b8c46d /lang/tcl-tclX | |
parent | a6c32dca6a7158a79290c52ed95715aa3a0ee5f4 (diff) | |
download | pkgsrc-25a40248061d30e97c0e11465713e8ddca785bf3.tar.gz |
Use find -print | xargs rather than find -exec.
Diffstat (limited to 'lang/tcl-tclX')
-rw-r--r-- | lang/tcl-tclX/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/tcl-tclX/Makefile b/lang/tcl-tclX/Makefile index 768ce487189..2c5c9f6a96d 100644 --- a/lang/tcl-tclX/Makefile +++ b/lang/tcl-tclX/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.34 2006/04/06 06:22:15 reed Exp $ +# $NetBSD: Makefile,v 1.35 2006/11/10 17:34:09 tv Exp $ # DISTNAME= tclx8.3.5-src @@ -55,8 +55,8 @@ post-build: cd ${WRKSRC}/../tcl/unix && ${MAKE_ENV} ${MAKE} buildhelp post-install: - ${FIND} ${PREFIX}/lib/tcl/tclX8.3/help -type d -exec ${CHMOD} ${PKGDIRMODE} '{}' \; - ${FIND} ${PREFIX}/lib/tcl/tclX8.3/help -type f -exec ${CHMOD} ${DOCMODE} '{}' \; + ${FIND} ${PREFIX}/lib/tcl/tclX8.3/help -type d -print | ${XARGS} ${CHMOD} ${PKGDIRMODE} + ${FIND} ${PREFIX}/lib/tcl/tclX8.3/help -type f -print | ${XARGS} ${CHMOD} ${DOCMODE} @${RM} ${PREFIX}/man/man3/TkX_Main.3 @${RM} ${PREFIX}/man/man3/Tkx_Init.3 # the above links are installed based on the contents of the man page. |