summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets
diff options
context:
space:
mode:
authorJosé Fonseca <[email protected]>2012-10-17 15:28:26 +0100
committerJosé Fonseca <[email protected]>2012-10-17 15:28:26 +0100
commit879894552be91d79a71fbea4346c932917c3eea3 (patch)
treef074f816b9d21d8790b652d1ee2dab53603827f0 /src/gallium/targets
parentea2978b11c02ca52c1f0b144d604597b664f6118 (diff)
scons: Fix graw-xlib lib order.
Avoids "undefined symbol: XShmCreateImage" error.
Diffstat (limited to 'src/gallium/targets')
-rw-r--r--src/gallium/targets/graw-xlib/SConscript2
1 files changed, 1 insertions, 1 deletions
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',