Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-03-04 17:59:54 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-04 17:59:54 +0400
commit41b801ab9c750e182f831db2c3a391986fa7cbbe (patch)
treed05af69f330eb6ff5f9d26aa7a082aa1b4630838 /build_files
parent42ca1c8dcd8d148124b9d5fcf262887cac9909c1 (diff)
patch [#34525] Scons ' color
by Andrey Izrantsev (bdancer)
Diffstat (limited to 'build_files')
-rw-r--r--build_files/scons/tools/Blender.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/build_files/scons/tools/Blender.py b/build_files/scons/tools/Blender.py
index 3688a829a4d..b3c3907129f 100644
--- a/build_files/scons/tools/Blender.py
+++ b/build_files/scons/tools/Blender.py
@@ -455,22 +455,22 @@ def my_print_cmd_line(self, s, target, source, env):
def my_compile_print(target, source, env):
a = '%s' % (source[0])
d, f = os.path.split(a)
- return bc.OKBLUE+"Compiling"+bc.ENDC +" ==> '"+bc.OKGREEN+"%s" % (f) + "'"+bc.ENDC
+ return bc.OKBLUE + "Compiling" + bc.ENDC + " ==> '" + bc.OKGREEN + ("%s" % f) + bc.ENDC + "'"
def my_moc_print(target, source, env):
a = '%s' % (source[0])
d, f = os.path.split(a)
- return bc.OKBLUE+"Creating MOC"+bc.ENDC+ " ==> '"+bc.OKGREEN+"%s" %(f) + "'"+bc.ENDC
+ return bc.OKBLUE + "Creating MOC" + bc.ENDC + " ==> '" + bc.OKGREEN + ("%s" % f) + bc.ENDC + "'"
def my_linking_print(target, source, env):
t = '%s' % (target[0])
d, f = os.path.split(t)
- return bc.OKBLUE+"Linking library"+bc.ENDC +" ==> '"+bc.OKGREEN+"%s" % (f) + "'"+bc.ENDC
+ return bc.OKBLUE + "Linking library" + bc.ENDC + " ==> '" + bc.OKGREEN + ("%s" % f) + bc.ENDC + "'"
def my_program_print(target, source, env):
t = '%s' % (target[0])
d, f = os.path.split(t)
- return bc.OKBLUE+"Linking program"+bc.ENDC +" ==> '"+bc.OKGREEN+"%s" % (f) + "'"+bc.ENDC
+ return bc.OKBLUE + "Linking program" + bc.ENDC + " ==> '" + bc.OKGREEN + ("%s" % f) + bc.ENDC + "'"
def msvc_hack(env):
static_lib = SCons.Tool.createStaticLibBuilder(env)