scons: Install shared libs in the right subdir.
authorJosé Fonseca <jrfonseca@tungstengraphics.com>
Mon, 8 Sep 2008 12:50:50 +0000 (21:50 +0900)
committerJosé Fonseca <jrfonseca@tungstengraphics.com>
Mon, 8 Sep 2008 12:50:50 +0000 (21:50 +0900)
scons/gallium.py

index abe962493d7070827dc43f994870b4a7d3e61c6d..3631607e666334770c58e2d9c110ac7d506db49b 100644 (file)
@@ -150,14 +150,13 @@ def symlink(target, source, env):
 def install_shared_library(env, source, version = ()):
     source = str(source[0])
     version = tuple(map(str, version))
-    target_dir = os.path.join(env['build'], 'lib')
+    target_dir =  os.path.join(env.Dir('#.').srcnode().abspath, env['build'], 'lib')
     target_name = '.'.join((str(source),) + version)
     last = env.InstallAs(os.path.join(target_dir, target_name), source)
     while len(version):
         version = version[:-1]
         target_name = '.'.join((str(source),) + version)
         action = SCons.Action.Action(symlink, "$TARGET -> $SOURCE")
-        print os.path.join(target_dir, target_name), last
         last = env.Command(os.path.join(target_dir, target_name), last, action) 
 
 def createInstallMethods(env):