diff options
author | José Fonseca <[email protected]> | 2012-10-17 15:28:26 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2012-10-17 15:28:26 +0100 |
commit | 879894552be91d79a71fbea4346c932917c3eea3 (patch) | |
tree | f074f816b9d21d8790b652d1ee2dab53603827f0 /src/gallium/targets | |
parent | ea2978b11c02ca52c1f0b144d604597b664f6118 (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/SConscript | 2 |
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', |