Module Name:    src
Committed By:   he
Date:           Wed Jan 30 13:47:36 UTC 2013

Modified Files:
        src/distrib/common: Makefile.mdset
        src/distrib/evbarm/gzboot/gzimg: Makefile

Log Message:
Fix the ALL_KERNELS default value assignment, so that the double
quotes don't become a part of the value, causing all the targets
to be skipped by default.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/distrib/common/Makefile.mdset
cvs rdiff -u -r1.23 -r1.24 src/distrib/evbarm/gzboot/gzimg/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/common/Makefile.mdset
diff -u src/distrib/common/Makefile.mdset:1.36 src/distrib/common/Makefile.mdset:1.37
--- src/distrib/common/Makefile.mdset:1.36	Sun Jan 13 14:43:23 2013
+++ src/distrib/common/Makefile.mdset	Wed Jan 30 13:47:36 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.mdset,v 1.36 2013/01/13 14:43:23 mlelstv Exp $
+#	$NetBSD: Makefile.mdset,v 1.37 2013/01/30 13:47:36 he Exp $
 #
 # Makefile snippet to ${TOOL_MDSETIMAGE} file system images into kernels
 #
@@ -69,7 +69,9 @@ _MAKEFILE_MDSET_=1
 
 .include <bsd.kernobj.mk>
 
-ALL_KERNELS?= "+"
+# The default is to build for all MDSETTARGETS
+ALL_KERNELS?= +
+
 .for _K _I _F in ${MDSETTARGETS}			# {
 .for currentsel in ${ALL_KERNELS}			# {
 .if ${currentsel} == "+" || ${_K} == ${currentsel}

Index: src/distrib/evbarm/gzboot/gzimg/Makefile
diff -u src/distrib/evbarm/gzboot/gzimg/Makefile:1.23 src/distrib/evbarm/gzboot/gzimg/Makefile:1.24
--- src/distrib/evbarm/gzboot/gzimg/Makefile:1.23	Sun Jan 13 14:43:23 2013
+++ src/distrib/evbarm/gzboot/gzimg/Makefile	Wed Jan 30 13:47:36 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.23 2013/01/13 14:43:23 mlelstv Exp $
+#	$NetBSD: Makefile,v 1.24 2013/01/30 13:47:36 he Exp $
 
 .include <bsd.own.mk>
 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
@@ -62,7 +62,9 @@ TARGETS=	ADI_BRH		ADI_BRH		ADI_BRH_sd0	\
 		0x00140000	netbsd-wd0
 .endif
 
-ALL_KERNELS?= "+"
+# Default is to build for all TARGETS
+ALL_KERNELS?= +
+
 .for K G I R W in ${TARGETS}				# {
 .for configsel in ${ALL_KERNELS}			# {
 .if ${configsel} == "+" || ${configsel} == ${K}

Reply via email to