OSDN Git Service

scons: Add a few more human friendly messages.
authorJosé Fonseca <jfonseca@vmware.com>
Wed, 4 May 2011 13:10:24 +0000 (14:10 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Wed, 4 May 2011 13:10:24 +0000 (14:10 +0100)
scons/custom.py
scons/gallium.py

index 7c59fe9..a2c690f 100644 (file)
@@ -59,6 +59,7 @@ def quietCommandLines(env):
     env['LEXCOMSTR'] = "  Generating $TARGET ..."
     env['YACCCOMSTR'] = "  Generating $TARGET ..."
     env['CODEGENCOMSTR'] = "  Generating $TARGET ..."
+    env['INSTALLSTR'] = "  Installing $TARGET ..."
 
 
 def createConvenienceLibBuilder(env):
index 4dcb8d0..a94bf73 100755 (executable)
@@ -74,7 +74,7 @@ def install_shared_library(env, sources, version = ()):
             while len(version):
                 version = version[:-1]
                 target_name = '.'.join((str(source),) + version)
-                action = SCons.Action.Action(symlink, "$TARGET -> $SOURCE")
+                action = SCons.Action.Action(symlink, "  Symlinking $TARGET ...")
                 last = env.Command(os.path.join(target_dir, target_name), last, action) 
                 targets += last
     return targets