diff options
author | José Fonseca <[email protected]> | 2008-09-08 21:50:50 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-09-08 21:50:50 +0900 |
commit | 7cfc294c70e96269055341d327622774c9173b37 (patch) | |
tree | 094af25f5c6e48369fed3e0260159a1b71a9f5ff /scons | |
parent | 2444c0c81acae9e2162a20002f8f72335133ead0 (diff) |
scons: Install shared libs in the right subdir.
Diffstat (limited to 'scons')
-rw-r--r-- | scons/gallium.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scons/gallium.py b/scons/gallium.py index abe962493d7..3631607e666 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): |