diff options
author | Jakob Bornecrantz <wallbraker@gmail.com> | 2010-03-26 14:19:48 +0100 |
---|---|---|
committer | Jakob Bornecrantz <wallbraker@gmail.com> | 2010-03-26 14:48:35 +0100 |
commit | 711529153c797b4169fd5bbba79b370a2f38a0e9 (patch) | |
tree | 602acdc11ecf7551fcbd1a826d0b785441b9a881 /src/gallium/targets/dri-vmwgfx/SConscript | |
parent | fb70f456fce6b9cca9330e1c1e174153e532693e (diff) |
gallium: Fix DRI driver build warnings under scons
When building more then one dri driver we would get warnings because
we where defining the same build target multiple times.
Also move all the dri scons targets related code into its own file.
Diffstat (limited to 'src/gallium/targets/dri-vmwgfx/SConscript')
-rw-r--r-- | src/gallium/targets/dri-vmwgfx/SConscript | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/gallium/targets/dri-vmwgfx/SConscript b/src/gallium/targets/dri-vmwgfx/SConscript index 7d248e8a9c..6a1f8827bc 100644 --- a/src/gallium/targets/dri-vmwgfx/SConscript +++ b/src/gallium/targets/dri-vmwgfx/SConscript @@ -6,19 +6,19 @@ if not 'svga' in env['drivers']: env = drienv.Clone() -drivers = [ - trace, - st_dri, - svgadrm, - svga, - mesa, - glsl, - gallium, -] +env.Prepend(LIBS = [ + st_dri, + svgadrm, + svga, + trace, + mesa, + glsl, + gallium, + COMMON_DRI_DRM_OBJECTS +]) env.LoadableModule( - target ='vmwgfx_dri.so', - source = COMMON_GALLIUM_SOURCES, - LIBS = drivers + mesa + gallium + env['LIBS'], + target = 'vmwgfx_dri.so', + source = 'dummy.c', SHLIBPREFIX = '', ) |