mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
scons: Add a few more human friendly messages.
This commit is contained in:
parent
da87370032
commit
37058c3497
2 changed files with 2 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue