Module Name:    src
Committed By:   uebayasi
Date:           Sat Nov 21 13:37:18 UTC 2009

Modified Files:
        src/sys/lib/libkern: Makefile.libkern

Log Message:
Redo the previous inverted logic.  Sort alphabetically.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/lib/libkern/Makefile.libkern

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

Modified files:

Index: src/sys/lib/libkern/Makefile.libkern
diff -u src/sys/lib/libkern/Makefile.libkern:1.6 src/sys/lib/libkern/Makefile.libkern:1.7
--- src/sys/lib/libkern/Makefile.libkern:1.6	Sat Nov 21 13:30:23 2009
+++ src/sys/lib/libkern/Makefile.libkern	Sat Nov 21 13:37:18 2009
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.libkern,v 1.6 2009/11/21 13:30:23 uebayasi Exp $
+#	$NetBSD: Makefile.libkern,v 1.7 2009/11/21 13:37:18 uebayasi Exp $
 
 # 
 # Variable definitions for libkern.  
@@ -42,12 +42,12 @@
 .include "$M/Makefile.inc"
 .endif
 
-.if (${MACHINE_ARCH} != "alpha") || \
-    (${MACHINE_ARCH} != "x86_64") || \
-    (${MACHINE_ARCH} != "mips64eb") || \
-    (${MACHINE_ARCH} != "mips64el") || \
-    (${MACHINE_ARCH} != "powerpc64") || \
-    (${MACHINE_ARCH} != "sparc64")
+.if (${MACHINE_ARCH} != "alpha") && \
+    (${MACHINE_ARCH} != "mips64eb") && \
+    (${MACHINE_ARCH} != "mips64el") && \
+    (${MACHINE_ARCH} != "powerpc64") && \
+    (${MACHINE_ARCH} != "sparc64") && \
+    (${MACHINE_ARCH} != "x86_64")
 # Quad support
 SRCS+=	adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
 	lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \

Reply via email to