Source-Changes-HG archive

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

[src/trunk]: src/sys/lib/libkern Redo the previous inverted logic. Sort alph...



details:   https://anonhg.NetBSD.org/src/rev/4ecadccb5b7a
branches:  trunk
changeset: 749208:4ecadccb5b7a
user:      uebayasi <uebayasi%NetBSD.org@localhost>
date:      Sat Nov 21 13:37:18 2009 +0000

description:
Redo the previous inverted logic.  Sort alphabetically.

diffstat:

 sys/lib/libkern/Makefile.libkern |  14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diffs (28 lines):

diff -r 6365adc02917 -r 4ecadccb5b7a sys/lib/libkern/Makefile.libkern
--- a/sys/lib/libkern/Makefile.libkern  Sat Nov 21 13:30:23 2009 +0000
+++ b/sys/lib/libkern/Makefile.libkern  Sat Nov 21 13:37:18 2009 +0000
@@ -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 \



Home | Main Index | Thread Index | Old Index