summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrillig <rillig>2008-01-05 21:48:53 +0000
committerrillig <rillig>2008-01-05 21:48:53 +0000
commit5d57ac44b21219dcd153637fd3e13b23b937fa33 (patch)
tree9daa00163f72859854136f2da978be9218751f18
parente6052e056ff0b684beac8e8dcd19885703fbe49b (diff)
downloadpkgsrc-5d57ac44b21219dcd153637fd3e13b23b937fa33.tar.gz
Wrote ${.ALLSRC} instead of $> to make the file more readable for those
who don't see this variable daily. This also prevents a pkglint internal error.
-rw-r--r--devel/mk-files/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/mk-files/Makefile b/devel/mk-files/Makefile
index ae575435310..ba4e0af5098 100644
--- a/devel/mk-files/Makefile
+++ b/devel/mk-files/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.21 2007/02/22 19:26:22 wiz Exp $
+# $NetBSD: Makefile,v 1.22 2008/01/05 21:48:53 rillig Exp $
#
DISTNAME= mk-20050405
@@ -37,9 +37,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-Za-z].*\.mk' $> ; \
+ @( ${GREP} '^[A-Za-z].*\.mk' ${.ALLSRC} ; \
[ -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/,' > $@
+ done ) | ${SED} 's,^,share/mk/,' > ${.TARGET}