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>2008-11-18 08:47:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-11-18 08:47:19 +0300
commitbbc00befe75ce223a91d1bbccab1e6e1c93da98c (patch)
treeb340d5058d221ac3ab8cb07a3e4ee609bd94e31b /tools/Blender.py
parent826c6d935d0a47289369b8c76ceb554d5def189a (diff)
some scons command line args were not working since recent changes-
scons CCFLAGS="-O0 -ggdp3" for example would pass on the args including the "'s to scons, causing the build to fail.
Diffstat (limited to 'tools/Blender.py')
-rw-r--r--tools/Blender.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index 97b855c630b..1c54e98f177 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -190,7 +190,7 @@ def setup_syslibs(lenv):
if lenv['OURPLATFORM'] in ('win32-vc', 'win32-mingw','linuxcross'):
syslibs += Split(lenv['BF_PTHREADS_LIB'])
- syslibs += Split(lenv['LLIBS'])
+ syslibs += lenv['LLIBS']
return syslibs