From 879894552be91d79a71fbea4346c932917c3eea3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Wed, 17 Oct 2012 15:28:26 +0100 Subject: [PATCH] scons: Fix graw-xlib lib order. Avoids "undefined symbol: XShmCreateImage" error. --- src/gallium/targets/graw-xlib/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', -- 2.30.2