scons: Fix graw-xlib lib order.
authorJosé Fonseca <jfonseca@vmware.com>
Wed, 17 Oct 2012 14:28:26 +0000 (15:28 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Wed, 17 Oct 2012 14:28:26 +0000 (15:28 +0100)
Avoids "undefined symbol: XShmCreateImage" error.

src/gallium/targets/graw-xlib/SConscript

index 42cb349cc912e18bbba133109289e741fe0136ce..a535f3168d421378c8430fc046def95faf7143ed 100644 (file)
@@ -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',