scons: Disable version symlinking for DLLs.
authorJosé Fonseca <jfonseca@vmware.com>
Fri, 1 Jan 2010 21:54:51 +0000 (21:54 +0000)
committerJosé Fonseca <jfonseca@vmware.com>
Sat, 2 Jan 2010 00:01:42 +0000 (00:01 +0000)
Fixes windows build.

scons/gallium.py

index f24959c12058187eef137cb49bee6244a7b971c4..0133f9f046349d522dd605465ef8315fe7351f95 100644 (file)
@@ -56,13 +56,17 @@ def install_shared_library(env, source, version = ()):
     source = str(source[0])
     version = tuple(map(str, version))
     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]
+    if env['SHLIBSUFFIX'] == '.so':
         target_name = '.'.join((str(source),) + version)
-        action = SCons.Action.Action(symlink, "$TARGET -> $SOURCE")
-        last = env.Command(os.path.join(target_dir, target_name), last, action) 
+        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")
+            last = env.Command(os.path.join(target_dir, target_name), last, action) 
+    else:
+        target_name = str(source)
+        env.InstallAs(os.path.join(target_dir, target_name), source)
 
 def createInstallMethods(env):
     env.AddMethod(install_program, 'InstallProgram')