diff options
author | heinz <heinz@pkgsrc.org> | 2004-01-27 00:53:10 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2004-01-27 00:53:10 +0000 |
commit | 18a916d5e6481b140ffb5e120e09d36645a44a11 (patch) | |
tree | 0e38a95bbce9b72b902212b13f3fff0a72b2b5fd /wm | |
parent | d84262f580a6d28b6b7bde5294039c4f6e0999df (diff) | |
download | pkgsrc-18a916d5e6481b140ffb5e120e09d36645a44a11.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'wm')
-rw-r--r-- | wm/enlightenment/Makefile | 6 | ||||
-rw-r--r-- | wm/ethemes/Makefile | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/wm/enlightenment/Makefile b/wm/enlightenment/Makefile index 90d96fdb4c1..f189e10a892 100644 --- a/wm/enlightenment/Makefile +++ b/wm/enlightenment/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2004/01/03 18:49:54 reed Exp $ +# $NetBSD: Makefile,v 1.20 2004/01/27 00:53:10 heinz Exp $ # DISTNAME= enlightenment-0.16.6 @@ -24,9 +24,9 @@ post-install: for FILE in `${GREP} "\.directory$$" ${PKGDIR}/PLIST`; do \ ${TOUCH} ${PREFIX}/$${FILE}; \ done - ${FIND} ${PREFIX}/share/enlightenment/themes -type d | \ + ${FIND} ${PREFIX}/share/enlightenment/themes -type d -print | \ ${XARGS} ${CHMOD} ${BINMODE} - ${FIND} ${PREFIX}/share/enlightenment/themes -type f | \ + ${FIND} ${PREFIX}/share/enlightenment/themes -type f -print | \ ${XARGS} ${CHMOD} ${SHAREMODE} .include "../../audio/esound/buildlink2.mk" diff --git a/wm/ethemes/Makefile b/wm/ethemes/Makefile index d23d3d1350d..8d4f1253a01 100644 --- a/wm/ethemes/Makefile +++ b/wm/ethemes/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2003/11/21 09:31:15 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2004/01/27 00:53:10 heinz Exp $ DISTNAME= ethemes-0.1 PKGREVISION= 2 @@ -45,8 +45,8 @@ do-install: .endfor .for DIR in Absolute_E ApplePlatinum FinalE cd ${PREFIX}/${E_DATADIR}/${DIR} \ - && ${CHMOD} go+rx `${FIND} . -type d` \ - && ${CHMOD} go+r `${FIND} . -type f` + && ${CHMOD} go+rx `${FIND} . -type d -print` \ + && ${CHMOD} go+r `${FIND} . -type f -print` .endfor .include "../../mk/bsd.pkg.mk" |