diff options
author | culot <culot@FreeBSD.org> | 2013-10-11 20:17:59 +0800 |
---|---|---|
committer | culot <culot@FreeBSD.org> | 2013-10-11 20:17:59 +0800 |
commit | 18fdab6dfa0751abadce5331190f8d1cc220a77f (patch) | |
tree | eff8a8294acf3e38cee58a4383abe113ea7d18f0 /Mk | |
parent | 5adf875e3ecd0895c4a861f3c519d9c53a53e0a4 (diff) | |
download | freebsd-ports-gnome-18fdab6dfa0751abadce5331190f8d1cc220a77f.tar.gz freebsd-ports-gnome-18fdab6dfa0751abadce5331190f8d1cc220a77f.tar.zst freebsd-ports-gnome-18fdab6dfa0751abadce5331190f8d1cc220a77f.zip |
- Update comments to reflect the new "stage" target
Approved by: portmgr (bapt)
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index dd0e0253dffe..cd24b1b98fba 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -205,11 +205,12 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org # to skip this port by setting ${BATCH}, or compiling only # the interactive ports by setting ${INTERACTIVE}. # Default: not set. -# USE_SUBMAKE - Set this if you want that each of the port's main 6 targets -# (extract, patch, configure, build, install and package) to be -# executed in a separate make(1) process. Useful when one of -# the stages needs to influence make(1) variables of the later -# stages using ${WRKDIR}/Makefile.inc generated on the fly. +# USE_SUBMAKE - Set this if you want that each of the port's main 7 targets +# (extract, patch, configure, build, stage, install and +# package) to be executed in a separate make(1) process. +# Useful when one of the stages needs to influence make(1) +# variables of the later stages using ${WRKDIR}/Makefile.inc +# generated on the fly. # Default: not set. # # Set these if your port only makes sense to certain architectures. @@ -4407,7 +4408,7 @@ fetch: ${_FETCH_DEP} ${_FETCH_SEQ} pkg: ${_PKG_DEP} ${_PKG_SEQ} .endif -# Main logic. The loop generates 6 main targets and using cookies +# Main logic. The loop generates 7 main targets and using cookies # ensures that those already completed are skipped. .for target in extract patch configure build stage install package |