Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib Fix the ALL_KERNELS default value assignment, so tha...



details:   https://anonhg.NetBSD.org/src/rev/21c28aee7d22
branches:  trunk
changeset: 784513:21c28aee7d22
user:      he <he%NetBSD.org@localhost>
date:      Wed Jan 30 13:47:36 2013 +0000

description:
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.

diffstat:

 distrib/common/Makefile.mdset        |  6 ++++--
 distrib/evbarm/gzboot/gzimg/Makefile |  6 ++++--
 2 files changed, 8 insertions(+), 4 deletions(-)

diffs (40 lines):

diff -r 3b29666f9b6f -r 21c28aee7d22 distrib/common/Makefile.mdset
--- a/distrib/common/Makefile.mdset     Wed Jan 30 11:52:54 2013 +0000
+++ b/distrib/common/Makefile.mdset     Wed Jan 30 13:47:36 2013 +0000
@@ -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 @@
 
 .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}
diff -r 3b29666f9b6f -r 21c28aee7d22 distrib/evbarm/gzboot/gzimg/Makefile
--- a/distrib/evbarm/gzboot/gzimg/Makefile      Wed Jan 30 11:52:54 2013 +0000
+++ b/distrib/evbarm/gzboot/gzimg/Makefile      Wed Jan 30 13:47:36 2013 +0000
@@ -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 @@
                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}



Home | Main Index | Thread Index | Old Index