diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-07-06 23:57:41 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-07-06 23:57:41 +0000 |
commit | 102c8761f1951adc9ac9b9c6dee6ef7f952c65a2 (patch) | |
tree | 8d52756a56d62badac483496f936c007006dae01 /Mk/bsd.port.subdir.mk | |
parent | * Attempt to detect and disallow installation of a port with PREFIX (diff) |
* Add 'maintainer' as a recursive target [1]
* Fix the subdirectory recursion [2]
PR: 51985 [1]
Submitted by: Mark Linimon <linimon@lonesome.com> [1], hoek [2]
Diffstat (limited to 'Mk/bsd.port.subdir.mk')
-rw-r--r-- | Mk/bsd.port.subdir.mk | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Mk/bsd.port.subdir.mk b/Mk/bsd.port.subdir.mk index 2645e0f501d9..7c27c594f5d1 100644 --- a/Mk/bsd.port.subdir.mk +++ b/Mk/bsd.port.subdir.mk @@ -32,7 +32,8 @@ # clean-for-cdrom-list, clean-restricted-list, # configure, deinstall, # depend, depends, describe, extract, fetch, fetch-list, ignorelist, -# install, makesum, package, readmes, realinstall, reinstall, tags +# install, maintainer, makesum, package, readmes, realinstall, reinstall, +# tags # # search: # Search for ports using either 'make search key=<keyword>' @@ -89,6 +90,7 @@ TARGETS+= fetch TARGETS+= fetch-list TARGETS+= ignorelist TARGETS+= makesum +TARGETS+= maintainer TARGETS+= package TARGETS+= realinstall TARGETS+= reinstall @@ -133,7 +135,9 @@ _SUBDIRUSE: .USE DIRPRFX=${DIRPRFX}$$edir/; \ fi -${SUBDIR}:: ${SUBDIR:S/$/.all/} +.for _subdir in ${SUBDIR} +${_subdir}:: ${_subdir:S/$/.all/} +.endfor .endif |