From: Michel Dänzer Date: Tue, 4 Mar 2008 17:32:16 +0000 (+0100) Subject: gallium: Fix scons condition for building the xlib winsys. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5b9b5c850f3b34d8891890d808a520a64dd779bc;p=mesa.git gallium: Fix scons condition for building the xlib winsys. --- diff --git a/src/gallium/winsys/SConscript b/src/gallium/winsys/SConscript index 635a68eea2c..f18d3bd2f8e 100644 --- a/src/gallium/winsys/SConscript +++ b/src/gallium/winsys/SConscript @@ -5,7 +5,7 @@ if dri: 'dri/SConscript', ]) -if 'xlib' in env['drivers'] and not dri: +if 'xlib' in env['winsys'] and not dri: SConscript([ 'xlib/SConscript', ])