浏览代码

scons: Install shared libs in the right subdir.

tags/mesa_20090313
José Fonseca 17 年前
父节点
当前提交
7cfc294c70
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1
    2
      scons/gallium.py

+ 1
- 2
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):

正在加载...
取消
保存