Source-Changes-HG archive

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

[src/trunk]: src/share/mk Use parentheses in .if A && ( B || C || D || ... )



details:   https://anonhg.NetBSD.org/src/rev/ccb18f3491f6
branches:  trunk
changeset: 792701:ccb18f3491f6
user:      apb <apb%NetBSD.org@localhost>
date:      Tue Jan 14 11:14:27 2014 +0000

description:
Use parentheses in .if A && ( B || C || D || ... )

diffstat:

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

diffs (27 lines):

diff -r 92ac468e075d -r ccb18f3491f6 share/mk/bsd.own.mk
--- a/share/mk/bsd.own.mk       Tue Jan 14 09:46:42 2014 +0000
+++ b/share/mk/bsd.own.mk       Tue Jan 14 11:14:27 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.own.mk,v 1.760 2013/12/31 18:46:09 christos Exp $
+#      $NetBSD: bsd.own.mk,v 1.761 2014/01/14 11:14:27 apb Exp $
 
 # This needs to be before bsd.init.mk
 .if defined(BSD_MK_COMPAT_FILE)
@@ -973,7 +973,7 @@
 # Which platforms build the xorg-server drivers (as opposed
 # to just Xnest and Xvfb.)
 #
-.if ${X11FLAVOUR} == "Xorg"    && \
+.if ${X11FLAVOUR} == "Xorg"    && ( \
     ${MACHINE} == "alpha"      || \
     ${MACHINE} == "amd64"      || \
     ${MACHINE} == "bebox"      || \
@@ -998,7 +998,7 @@
     ${MACHINE} == "sparc"      || \
     ${MACHINE} == "sparc64"    || \
     ${MACHINE} == "vax"                || \
-    ${MACHINE} == "zaurus"
+    ${MACHINE} == "zaurus"     )
 MKXORG_SERVER?=yes
 .else
 MKXORG_SERVER?=no



Home | Main Index | Thread Index | Old Index