summaryrefslogtreecommitdiff
path: root/scons
diff options
context:
space:
mode:
authorMichel Dänzer <daenzer@vmware.com>2009-06-11 12:11:37 +0200
committerMichel Dänzer <daenzer@vmware.com>2009-06-11 12:15:50 +0200
commit550a2fe1b70ae8bd3126c19cc41629296936d211 (patch)
tree668ee3ebe9fb449969a208c0f52c35ec84246430 /scons
parent3885b708fdbb7bbd5dd3a247c41fb9a75ee7c057 (diff)
scons: Indent abbreviated command line strings, so command messages stand out.
Also add ASPPCOMSTR.
Diffstat (limited to 'scons')
-rw-r--r--scons/gallium.py23
1 files changed, 12 insertions, 11 deletions
diff --git a/scons/gallium.py b/scons/gallium.py
index 5b3c9752bc4..6e924da303b 100644
--- a/scons/gallium.py
+++ b/scons/gallium.py
@@ -42,17 +42,18 @@ import SCons.Scanner
def quietCommandLines(env):
# Quiet command lines
# See also http://www.scons.org/wiki/HidingCommandLinesInOutput
- env['ASCOMSTR'] = "Assembling $SOURCE ..."
- env['CCCOMSTR'] = "Compiling $SOURCE ..."
- env['SHCCCOMSTR'] = "Compiling $SOURCE ..."
- env['CXXCOMSTR'] = "Compiling $SOURCE ..."
- env['SHCXXCOMSTR'] = "Compiling $SOURCE ..."
- env['ARCOMSTR'] = "Archiving $TARGET ..."
- env['RANLIBCOMSTR'] = "Indexing $TARGET ..."
- env['LINKCOMSTR'] = "Linking $TARGET ..."
- env['SHLINKCOMSTR'] = "Linking $TARGET ..."
- env['LDMODULECOMSTR'] = "Linking $TARGET ..."
- env['SWIGCOMSTR'] = "Generating $TARGET ..."
+ env['ASCOMSTR'] = " Assembling $SOURCE ..."
+ env['ASPPCOMSTR'] = " Assembling $SOURCE ..."
+ env['CCCOMSTR'] = " Compiling $SOURCE ..."
+ env['SHCCCOMSTR'] = " Compiling $SOURCE ..."
+ env['CXXCOMSTR'] = " Compiling $SOURCE ..."
+ env['SHCXXCOMSTR'] = " Compiling $SOURCE ..."
+ env['ARCOMSTR'] = " Archiving $TARGET ..."
+ env['RANLIBCOMSTR'] = " Indexing $TARGET ..."
+ env['LINKCOMSTR'] = " Linking $TARGET ..."
+ env['SHLINKCOMSTR'] = " Linking $TARGET ..."
+ env['LDMODULECOMSTR'] = " Linking $TARGET ..."
+ env['SWIGCOMSTR'] = " Generating $TARGET ..."
def createConvenienceLibBuilder(env):