Source-Changes-HG archive

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

[src/trunk]: src/external/mit/xorg/lib Test for ${MKDEBUG} using the same con...



details:   https://anonhg.NetBSD.org/src/rev/5efdda381f52
branches:  trunk
changeset: 805537:5efdda381f52
user:      gson <gson%NetBSD.org@localhost>
date:      Mon Jan 05 18:51:10 2015 +0000

description:
Test for ${MKDEBUG} using the same construct as in other places, so that
we get consistent behavior when the value is neither "no" nor "yes".

diffstat:

 external/mit/xorg/lib/dri/Makefile     |  4 ++--
 external/mit/xorg/lib/gallium/Makefile |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 7c3305b55b77 -r 5efdda381f52 external/mit/xorg/lib/dri/Makefile
--- a/external/mit/xorg/lib/dri/Makefile        Mon Jan 05 18:41:59 2015 +0000
+++ b/external/mit/xorg/lib/dri/Makefile        Mon Jan 05 18:51:10 2015 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.25 2015/01/05 16:26:48 christos Exp $
+# $NetBSD: Makefile,v 1.26 2015/01/05 18:51:10 gson Exp $
 
 # Link the mesa_dri_drivers mega driver.
 
@@ -372,7 +372,7 @@
 .for _d in ${DRIVERS}
 SYMLINKS+= mesa_dri_drivers.so.${SHLIB_MAJOR} ${DRIDIR}/${_d}_dri.so.${SHLIB_MAJOR} 
 SYMLINKS+= ${_d}_dri.so.${SHLIB_MAJOR} ${DRIDIR}/${_d}_dri.so
-.if ${MKDEBUG:Uno} == "yes"
+.if ${MKDEBUG} != "no"
 SYMLINKS+= mesa_dri_drivers.so.${SHLIB_MAJOR}.debug ${DRIDEBUGDIR}/${_d}_dri.so.${SHLIB_MAJOR}.debug
 .endif
 .endfor
diff -r 7c3305b55b77 -r 5efdda381f52 external/mit/xorg/lib/gallium/Makefile
--- a/external/mit/xorg/lib/gallium/Makefile    Mon Jan 05 18:41:59 2015 +0000
+++ b/external/mit/xorg/lib/gallium/Makefile    Mon Jan 05 18:51:10 2015 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2015/01/05 01:34:42 joerg Exp $
+# $NetBSD: Makefile,v 1.5 2015/01/05 18:51:10 gson Exp $
 
 # Link the gallium mega driver.
 
@@ -476,7 +476,7 @@
 .for _d in ${DRIVERS}
 SYMLINKS+= gallium_dri.so ${DRIDIR}/${_d}_dri.so
 SYMLINKS+= gallium_dri.so.${SHLIB_MAJOR} ${DRIDIR}/${_d}_dri.so.${SHLIB_MAJOR} 
-.if ${MKDEBUG:Uno} == "yes"
+.if ${MKDEBUG} != "no"
 SYMLINKS+= gallium_dri.so.${SHLIB_MAJOR}.debug ${DRIDEBUGDIR}/${_d}_dri.so.${SHLIB_MAJOR}.debug
 .endif
 .endfor



Home | Main Index | Thread Index | Old Index