diff options
author | wiz <wiz@pkgsrc.org> | 2000-02-05 15:34:03 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2000-02-05 15:34:03 +0000 |
commit | b6ba5f3aa9122d0f660422ebc5860bb74634fd09 (patch) | |
tree | abd24041bb847367ee07a1e164058ae28cc80c02 /x11 | |
parent | 8c08a5ee2cea28bd185b5eeeac25a01381e302e3 (diff) | |
download | pkgsrc-b6ba5f3aa9122d0f660422ebc5860bb74634fd09.tar.gz |
find -> ${FIND}
Diffstat (limited to 'x11')
-rw-r--r-- | x11/afterstep/Makefile | 4 | ||||
-rw-r--r-- | x11/egtk/Makefile | 12 |
2 files changed, 8 insertions, 8 deletions
diff --git a/x11/afterstep/Makefile b/x11/afterstep/Makefile index ae716ae31c3..a3b92e9441e 100644 --- a/x11/afterstep/Makefile +++ b/x11/afterstep/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 1999/10/28 10:07:42 agc Exp $ +# $NetBSD: Makefile,v 1.13 2000/02/05 15:34:03 wiz Exp $ DISTNAME= AfterStep-1.6.10 PKGNAME= afterstep-1.6.10 @@ -27,7 +27,7 @@ CONFIGURE_ARGS+= --with-png-includes=${LOCALBASE}/include \ CONFIGURE_ENV+= LOCALBASE=${LOCALBASE} post-patch: - for i in ` find ${WRKSRC} -name "*.man" -print `; do \ + for i in ` ${FIND} ${WRKSRC} -name "*.man" -print `; do \ ${MV} $$i $$i.orig ;\ ${SED} -e 's@/usr/local/@${PREFIX}/@g' < $$i.orig > $$i ; \ ${RM} $$i.orig ;\ diff --git a/x11/egtk/Makefile b/x11/egtk/Makefile index 19041b0396b..58de9c6dbdc 100644 --- a/x11/egtk/Makefile +++ b/x11/egtk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 1999/10/14 02:30:25 jlam Exp $ +# $NetBSD: Makefile,v 1.3 2000/02/05 15:37:43 wiz Exp $ # DISTNAME= eiffel_gtk_0.3.3 @@ -17,11 +17,11 @@ USE_X11= yes WRKSRC= ${WRKDIR}/eGTK post-extract: - find ${WRKSRC} -type d -name "CVS" -print | xargs ${RM} -rf - find ${WRKSRC} -type d -name "ise" -print | xargs ${RM} -rf - find ${WRKSRC} -type f -name "*.ace" -print | xargs ${RM} -f - find ${WRKSRC} -type f -name "*.orig" -print | xargs ${RM} -f - find ${WRKSRC} -type f -name "*.rej" -print | xargs ${RM} -f + ${FIND} ${WRKSRC} -type d -name "CVS" -print | xargs ${RM} -rf + ${FIND} ${WRKSRC} -type d -name "ise" -print | xargs ${RM} -rf + ${FIND} ${WRKSRC} -type f -name "*.ace" -print | xargs ${RM} -f + ${FIND} ${WRKSRC} -type f -name "*.orig" -print | xargs ${RM} -f + ${FIND} ${WRKSRC} -type f -name "*.rej" -print | xargs ${RM} -f ${RMDIR} ${WRKSRC}/lib/gdk/se ${WRKSRC}/examples/toolbar ${RM} ${WRKSRC}/examples/Makefile cd ${WRKSRC}/C/se; ${MAKE_PROGRAM} -f Makefile.se clean |