diff options
| author | jym <jym@NetBSD.org> | 2011-01-29 16:56:26 +0000 |
|---|---|---|
| committer | jym <jym@NetBSD.org> | 2011-01-29 16:56:26 +0000 |
| commit | a5a554356098015dd7e4f8d3534acb47bd31e921 (patch) | |
| tree | da3280985d8534ec7ce1d8484748fbf731d6dc5b /Makefile | |
| parent | 13f8d636b3f3526b23e6558ac84818c1234063e3 (diff) | |
Pass down INSTALLSETS variable to installsets target. Use :Q to escape
shell meta-characters, as the variable contains a list of sets, separated
by spaces.
$ ./build.sh -V INSTALLSETS="base etc" install=idir
should now work as expected.
Reviewed by apb@ on tech-toolchain.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.281 2010/12/03 21:38:46 plunky Exp $ +# $NetBSD: Makefile,v 1.282 2011/01/29 16:56:26 jym Exp $ # # This is the top-level makefile for building NetBSD. For an outline of @@ -332,7 +332,7 @@ installworld: .PHONY .MAKE .endif .endif ${MAKEDIRTARGET} distrib/sets installsets \ - INSTALLDIR=${INSTALLWORLDDIR:U/} INSTALLSETS= + INSTALLDIR=${INSTALLWORLDDIR:U/} INSTALLSETS=${INSTALLSETS:Q} ${MAKEDIRTARGET} . postinstall-check DESTDIR=${INSTALLWORLDDIR} @echo "make ${.TARGET} started at: ${START_TIME}" @printf "make ${.TARGET} finished at: " && date |
