diff options
-rw-r--r-- | math/abacus/Makefile | 4 | ||||
-rw-r--r-- | security/ssh/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/math/abacus/Makefile b/math/abacus/Makefile index 0d3e64f8ad2..13257e6500a 100644 --- a/math/abacus/Makefile +++ b/math/abacus/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 1999/11/18 15:24:18 agc Exp $ +# $NetBSD: Makefile,v 1.5 2000/03/02 20:59:37 wiz Exp $ # FreeBSD Id: Makefile,v 1.3 1998/09/25 10:07:44 asami Exp # @@ -17,7 +17,7 @@ USE_GMAKE= yes USE_X11BASE= yes pre-patch: - @for d in `find ${WRKSRC} -name RCS -type d -print`; do \ + @for d in `${FIND} ${WRKSRC} -name RCS -type d -print`; do \ ${MV} $$d $$d-dist; \ done diff --git a/security/ssh/Makefile b/security/ssh/Makefile index bbba22c4b90..461bf106012 100644 --- a/security/ssh/Makefile +++ b/security/ssh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.71 2000/02/05 06:03:25 wiz Exp $ +# $NetBSD: Makefile,v 1.72 2000/03/02 21:05:13 wiz Exp $ # FreeBSD Id: Makefile,v 1.47 1997/11/10 22:04:42 dima Exp # @@ -162,7 +162,7 @@ fetch-depends: post-patch: @# Make sure that "automake" is never run. - @find ${WRKSRC} -name Makefile.in -print | xargs ${TOUCH} ${TOUCH_FLAGS} + @${FIND} ${WRKSRC} -name Makefile.in -print | xargs ${TOUCH} ${TOUCH_FLAGS} post-build: @cd ${PKGDIR}; \ |