summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/graw-xlib
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2012-10-17 15:28:26 +0100
committerJosé Fonseca <jfonseca@vmware.com>2012-10-17 15:28:26 +0100
commit879894552be91d79a71fbea4346c932917c3eea3 (patch)
treef074f816b9d21d8790b652d1ee2dab53603827f0 /src/gallium/targets/graw-xlib
parentea2978b11c02ca52c1f0b144d604597b664f6118 (diff)
downloadexternal_mesa3d-879894552be91d79a71fbea4346c932917c3eea3.zip
external_mesa3d-879894552be91d79a71fbea4346c932917c3eea3.tar.gz
external_mesa3d-879894552be91d79a71fbea4346c932917c3eea3.tar.bz2
scons: Fix graw-xlib lib order.
Avoids "undefined symbol: XShmCreateImage" error.
Diffstat (limited to 'src/gallium/targets/graw-xlib')
-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 42cb349..a535f31 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',