Module Name: src Committed By: tsutsui Date: Sat Jul 31 16:23:15 UTC 2010
Modified Files: src/share/mk: bsd.own.mk Log Message: Cleanup and sort if-clause lines for X11FLAVOUR per ${MACHINE}. To generate a diff of this commit: cvs rdiff -u -r1.636 -r1.637 src/share/mk/bsd.own.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/share/mk/bsd.own.mk diff -u src/share/mk/bsd.own.mk:1.636 src/share/mk/bsd.own.mk:1.637 --- src/share/mk/bsd.own.mk:1.636 Sat Jul 31 12:54:35 2010 +++ src/share/mk/bsd.own.mk Sat Jul 31 16:23:15 2010 @@ -1,4 +1,4 @@ -# $NetBSD: bsd.own.mk,v 1.636 2010/07/31 12:54:35 tsutsui Exp $ +# $NetBSD: bsd.own.mk,v 1.637 2010/07/31 16:23:15 tsutsui Exp $ # This needs to be before bsd.init.mk .if defined(BSD_MK_COMPAT_FILE) @@ -737,12 +737,18 @@ # # Do we default to XFree86 or Xorg for this platform? # -.if ${MACHINE} == "alpha" || ${MACHINE} == "acorn32" || \ - ${MACHINE} == "amiga" || ${MACHINE} == "dreamcast" || \ - ${MACHINE} == "ews4800mips" || \ - ${MACHINE} == "mac68k" || ${MACHINE} == "newsmips" || \ - ${MACHINE} == "ofppc" || ${MACHINE} == "pmax" || \ - ${MACHINE} == "sun3" || ${MACHINE} == "x68k" +.if \ + ${MACHINE} == "acorn32" || \ + ${MACHINE} == "alpha" || \ + ${MACHINE} == "amiga" || \ + ${MACHINE} == "dreamcast" || \ + ${MACHINE} == "ews4800mips" || \ + ${MACHINE} == "mac68k" || \ + ${MACHINE} == "newsmips" || \ + ${MACHINE} == "ofppc" || \ + ${MACHINE} == "pmax" || \ + ${MACHINE} == "sun3" || \ + ${MACHINE} == "x68k" X11FLAVOUR?= XFree86 .else X11FLAVOUR?= Xorg