Module Name:    src
Committed By:   kre
Date:           Wed Nov 22 23:14:01 UTC 2017

Modified Files:
        src/distrib/sets: sets.subr

Log Message:
Ignore MAKEFLAGS for snippet makefiles.
(more important than MAKEVERBOSE probably.)


To generate a diff of this commit:
cvs rdiff -u -r1.180 -r1.181 src/distrib/sets/sets.subr

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

Modified files:

Index: src/distrib/sets/sets.subr
diff -u src/distrib/sets/sets.subr:1.180 src/distrib/sets/sets.subr:1.181
--- src/distrib/sets/sets.subr:1.180	Wed Nov 22 21:31:20 2017
+++ src/distrib/sets/sets.subr	Wed Nov 22 23:14:01 2017
@@ -1,4 +1,4 @@
-#	$NetBSD: sets.subr,v 1.180 2017/11/22 21:31:20 christos Exp $
+#	$NetBSD: sets.subr,v 1.181 2017/11/22 23:14:01 kre Exp $
 #
 
 #
@@ -179,7 +179,7 @@ SUBST="${SUBST};s#@MACHINE@#${MACHINE}#g
 # In each file, a record consists of a path and a System Package name,
 # separated by whitespace. E.g.,
 #
-# 	# $NetBSD: sets.subr,v 1.180 2017/11/22 21:31:20 christos Exp $
+# 	# $NetBSD: sets.subr,v 1.181 2017/11/22 23:14:01 kre Exp $
 # 	.			base-sys-root	[keyword[,...]]
 # 	./altroot		base-sys-root
 # 	./bin			base-sys-root
@@ -605,7 +605,7 @@ print_set_lists()
 #
 arch_to_cpu()
 {
-	MAKEVERBOSE= MACHINE_ARCH=${1} ${MAKE} -B -f- all <<EOMAKE
+	MAKEFLAGS= MAKEVERBOSE= MACHINE_ARCH=${1} ${MAKE} -B -f- all <<EOMAKE
 .include <bsd.own.mk>
 all:
 	@echo \${MACHINE_CPU}
@@ -619,7 +619,7 @@ EOMAKE
 #
 arch_to_endian()
 {
-	MAKEVERBOSE= MACHINE_ARCH=${1} ${MAKE} -B -f- all <<EOMAKE
+	MAKEFLAGS= MAKEVERBOSE= MACHINE_ARCH=${1} ${MAKE} -B -f- all <<EOMAKE
 .include <bsd.endian.mk>
 all:
 	@echo \${TARGET_ENDIANNESS}

Reply via email to