From a5a554356098015dd7e4f8d3534acb47bd31e921 Mon Sep 17 00:00:00 2001 From: jym Date: Sat, 29 Jan 2011 16:56:26 +0000 Subject: 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. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8f8b4c75ef2..b315d39bd8a 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit