From: José Fonseca Date: Wed, 5 May 2010 08:40:07 +0000 (+0100) Subject: graw-xlib: Revert the output dir lib change. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8ddf93e84ce280c742be905ce779db59df90d154;p=mesa.git graw-xlib: Revert the output dir lib change. --- diff --git a/src/gallium/targets/graw-xlib/SConscript b/src/gallium/targets/graw-xlib/SConscript index b30c2d9ab43..c9ea078ac16 100644 --- a/src/gallium/targets/graw-xlib/SConscript +++ b/src/gallium/targets/graw-xlib/SConscript @@ -42,10 +42,12 @@ env.Prepend(LIBS = [gallium]) # TODO: write a wrapper function http://www.scons.org/wiki/WrapperFunctions graw = env.SharedLibrary( - target ='#lib/graw', + target ='graw', source = sources, ) +env.InstallSharedLibrary(graw, version=(1, 0)) + graw = env.FindIxes(graw, 'SHLIBPREFIX', 'SHLIBSUFFIX') Export('graw')