summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--audio/rplay/Makefile4
-rw-r--r--cross/i386-msdosdjgpp/Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/audio/rplay/Makefile b/audio/rplay/Makefile
index 28702a9e3cf..66f29708cc5 100644
--- a/audio/rplay/Makefile
+++ b/audio/rplay/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.14 1999/12/28 04:20:03 wiz Exp $
+# $NetBSD: Makefile,v 1.15 2000/01/02 03:07:31 wiz Exp $
# FreeBSD Id: Makefile,v 1.8 1997/06/13 16:17:01 ache Exp
#
@@ -18,7 +18,7 @@ CONFIGURE_ENV+= LDFLAGS=-L${PREFIX}/lib # XXX
INFO_FILES= RPTP.info RPLAY.info rplay.info librplay.info
pre-configure:
- for f in `find ${WRKDIR}/. -type f -print|xargs ${GREP} -l '/usr/local'`; do \
+ for f in `${FIND} ${WRKDIR}/. -type f -print|xargs ${GREP} -l '/usr/local'`; do \
${SED} -e 's:/usr/local:'${PREFIX}':g' < $$f > $$f.pdone && ${MV} $$f.pdone $$f; \
done
${CHMOD} +x ${WRKSRC}/configure
diff --git a/cross/i386-msdosdjgpp/Makefile b/cross/i386-msdosdjgpp/Makefile
index 6cf1aac2a0e..1e3236d8797 100644
--- a/cross/i386-msdosdjgpp/Makefile
+++ b/cross/i386-msdosdjgpp/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 1999/01/04 22:37:33 tv Exp $
+# $NetBSD: Makefile,v 1.7 2000/01/02 03:08:47 wiz Exp $
#
DISTVERSION= 2.02.0
@@ -31,7 +31,7 @@ post-extract:
for file in ${DJGPP_FILES}; do \
unzip -Loq ${_DISTDIR}/$$file; \
done; \
- for file in `find include -type f`; do \
+ for file in `${FIND} include -type f`; do \
${CAT} $$file | col >$$file.new; \
${MV} -f $$file.new $$file; \
done