Source-Changes-HG archive

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

[src/trunk]: src/share/mk Add "MKZFS" to either "_MKVARS.yes" or "_MKVARS.no"...



details:   https://anonhg.NetBSD.org/src/rev/b2ce0ac4a785
branches:  trunk
changeset: 749599:b2ce0ac4a785
user:      tron <tron%NetBSD.org@localhost>
date:      Thu Dec 03 15:57:18 2009 +0000

description:
Add "MKZFS" to either "_MKVARS.yes" or "_MKVARS.no" depending on the
default of this platform. This fixed the build for NetBSD/amd64
and NetBSD/i386.

Yes, this horrible. There should be a better way to handle these
settings in general.

diffstat:

 share/mk/bsd.own.mk |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (20 lines):

diff -r c11514d48067 -r b2ce0ac4a785 share/mk/bsd.own.mk
--- a/share/mk/bsd.own.mk       Thu Dec 03 15:28:49 2009 +0000
+++ b/share/mk/bsd.own.mk       Thu Dec 03 15:57:18 2009 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.own.mk,v 1.600 2009/12/02 14:11:20 uebayasi Exp $
+#      $NetBSD: bsd.own.mk,v 1.601 2009/12/03 15:57:18 tron Exp $
 
 .if !defined(_BSD_OWN_MK_)
 _BSD_OWN_MK_=1
@@ -725,8 +725,10 @@
 #
 .if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
 MKZFS?=                yes
+_MKVARS.yes+=  MKZFS
 .else
 MKZFS?=                no
+_MKVARS.no+=   MKZFS
 .endif
 
 #



Home | Main Index | Thread Index | Old Index