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 /config/linux2-config.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 'config/linux2-config.py')
-rw-r--r--config/linux2-config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/linux2-config.py b/config/linux2-config.py
index 70bb827a67c..2984c06d2df 100644
--- a/config/linux2-config.py
+++ b/config/linux2-config.py
@@ -193,7 +193,7 @@ CC_WARN = ['-Wall']
##FIX_STUBS_WARNINGS = -Wno-unused
-LLIBS = 'util c m dl pthread stdc++'
+LLIBS = ['util', 'c', 'm', 'dl', 'pthread', 'stdc++']
##LOPTS = --dynamic
##DYNLDFLAGS = -shared $(LDFLAGS)