summaryrefslogtreecommitdiff
path: root/devel/mk-files
diff options
context:
space:
mode:
authorcjep <cjep@pkgsrc.org>2003-04-27 11:01:09 +0000
committercjep <cjep@pkgsrc.org>2003-04-27 11:01:09 +0000
commite4f6e5d985fa31b09c26372ae995804745d98670 (patch)
tree6f8ddbf0239d44f5633419707315b0476abe31eb /devel/mk-files
parent3660dec3b068b69a999e9218567e93a00e7f11a8 (diff)
downloadpkgsrc-e4f6e5d985fa31b09c26372ae995804745d98670.tar.gz
Use ${SED}, ${GREP} and ${ECHO}
Diffstat (limited to 'devel/mk-files')
-rw-r--r--devel/mk-files/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/devel/mk-files/Makefile b/devel/mk-files/Makefile
index efd09d6ad53..c50cc982d24 100644
--- a/devel/mk-files/Makefile
+++ b/devel/mk-files/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2003/03/29 12:40:35 jmmv Exp $
+# $NetBSD: Makefile,v 1.7 2003/04/27 11:01:09 cjep Exp $
#
DISTNAME= mk-1.3.2
@@ -28,9 +28,9 @@ do-install:
# same goes for the bsd.*.mk files (it makes the symlinks to *.mk)
${WRKSRC}/FILES: extract
${WRKDIR}/.PLIST_SRC: ${WRKSRC}/FILES
- @( grep '^[a-z].*\.mk' $> ; \
- [ -f /usr/share/mk/sys.mk ] || echo sys.mk; \
+ @( ${GREP} '^[a-z].*\.mk' $> ; \
+ [ -f /usr/share/mk/sys.mk ] || ${ECHO} sys.mk; \
[ -f /usr/share/mk/bsd.prog.mk ] || \
for f in dep doc init lib man nls obj own prog subdir; do \
- echo bsd.$$f.mk; \
- done ) | sed 's,^,share/mk/,' > $@
+ ${ECHO} bsd.$$f.mk; \
+ done ) | ${SED} 's,^,share/mk/,' > $@