From 7cfc294c70e96269055341d327622774c9173b37 Mon Sep 17 00:00:00 2001 From: José Fonseca Date: Mon, 8 Sep 2008 21:50:50 +0900 Subject: scons: Install shared libs in the right subdir. --- scons/gallium.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'scons') diff --git a/scons/gallium.py b/scons/gallium.py index abe962493d..3631607e66 100644 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -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): -- cgit v1.2.3