Module Name: src
Committed By: riz
Date: Sat Aug 9 22:10:35 UTC 2014
Modified Files:
src/sys/modules: Makefile
Log Message:
empty() wants a variable name, not a value. This should un-break
the arm an mips arch builds which were broken by the previous
commit.
To generate a diff of this commit:
cvs rdiff -u -r1.137 -r1.138 src/sys/modules/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/modules/Makefile
diff -u src/sys/modules/Makefile:1.137 src/sys/modules/Makefile:1.138
--- src/sys/modules/Makefile:1.137 Sat Aug 9 12:34:05 2014
+++ src/sys/modules/Makefile Sat Aug 9 22:10:35 2014
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.137 2014/08/09 12:34:05 bad Exp $
+# $NetBSD: Makefile,v 1.138 2014/08/09 22:10:35 riz Exp $
.include <bsd.own.mk>
@@ -143,11 +143,11 @@ SUBDIR+= vmt
.endif
.if ${MACHINE_ARCH} == "alpha" || \
- !empty(${MACHINE_ARCH:Mearm*}) || !empty(${MACHINE_ARCH:Marm*}) || \
+ !empty(MACHINE_ARCH:Mearm*) || !empty(MACHINE_ARCH:Marm*) || \
${MACHINE_ARCH} == "i386" || \
${MACHINE_ARCH} == "ia64" || \
${MACHINE_ARCH} == "hppa" || \
- !empty(${MACHINE_ARCH:Mmips*}) || \
+ !empty(MACHINE_ARCH:Mmips*) || \
${MACHINE_ARCH} == "sparc" || \
${MACHINE_ARCH} == "sparc64" || \
${MACHINE_ARCH} == "x86_64"