From: José Fonseca Date: Wed, 17 Oct 2012 14:28:26 +0000 (+0100) Subject: scons: Fix graw-xlib lib order. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=879894552be91d79a71fbea4346c932917c3eea3;p=mesa.git scons: Fix graw-xlib lib order. Avoids "undefined symbol: XShmCreateImage" error. --- diff --git a/src/gallium/targets/graw-xlib/SConscript b/src/gallium/targets/graw-xlib/SConscript index 42cb349cc91..a535f3168d4 100644 --- a/src/gallium/targets/graw-xlib/SConscript +++ b/src/gallium/targets/graw-xlib/SConscript @@ -10,7 +10,7 @@ env.Prepend(LIBS = [ gallium, ]) -env.Prepend(LIBS = env['X11_LIBS']) +env.Append(LIBS = env['X11_LIBS']) env.Append(CPPPATH = [ '#src/gallium/drivers',