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:
authorNathan Letwory <nathan@letworyinteractive.com>2010-08-30 01:53:12 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-08-30 01:53:12 +0400
commitcb786f0022984705701f0bf5428706f16d8a1a31 (patch)
tree83da2a6a6b2963bcc86c397c99f0f0c2b15f3036 /build_files
parentc29b5df7396ee4ffc8b8f930a31ae0f7f611d829 (diff)
Remove unnecessary \''s. This cleans up also printouts in splash and bpy.app (no more unnecessary quotes).
Diffstat (limited to 'build_files')
-rw-r--r--build_files/scons/tools/Blender.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/build_files/scons/tools/Blender.py b/build_files/scons/tools/Blender.py
index f388bbefeee..a878a38f1eb 100644
--- a/build_files/scons/tools/Blender.py
+++ b/build_files/scons/tools/Blender.py
@@ -284,12 +284,12 @@ def buildinfo(lenv, build_type):
obj = []
if lenv['BF_BUILDINFO']:
- lenv.Append (CPPDEFINES = ['BUILD_TIME=\'"%s"\''%(build_time),
- 'BUILD_DATE=\'"%s"\''%(build_date),
- 'BUILD_TYPE=\'"%s"\''%(build_type),
- 'BUILD_REV=\'"%s"\''%(build_rev),
+ lenv.Append (CPPDEFINES = ['BUILD_TIME="%s"'%(build_time),
+ 'BUILD_DATE="%s"'%(build_date),
+ 'BUILD_TYPE="%s"'%(build_type),
+ 'BUILD_REV="%s"'%(build_rev),
'NAN_BUILDINFO',
- 'BUILD_PLATFORM=\'"%s:%s"\''%(platform.system(), platform.architecture()[0])])
+ 'BUILD_PLATFORM="%s:%s"'%(platform.system(), platform.architecture()[0])])
obj = [lenv.Object (root_build_dir+'source/creator/%s_buildinfo'%build_type,
[root_build_dir+'source/creator/buildinfo.c'])]
return obj