Mesa (master): scons: Add a few more human friendly messages.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Wed May 4 13:11:00 UTC 2011


Module: Mesa
Branch: master
Commit: 37058c3497850f452bdaf70a5dda07ee4840b6b9
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=37058c3497850f452bdaf70a5dda07ee4840b6b9

Author: José Fonseca <jfonseca at vmware.com>
Date:   Wed May  4 14:10:24 2011 +0100

scons: Add a few more human friendly messages.

---

 scons/custom.py  |    1 +
 scons/gallium.py |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/scons/custom.py b/scons/custom.py
index 7c59fe9..a2c690f 100644
--- a/scons/custom.py
+++ b/scons/custom.py
@@ -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):
diff --git a/scons/gallium.py b/scons/gallium.py
index 4dcb8d0..a94bf73 100755
--- a/scons/gallium.py
+++ b/scons/gallium.py
@@ -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




More information about the mesa-commit mailing list