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>2008-11-05 01:46:43 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-11-05 01:46:43 +0300
commit2d802627596ba51a2ff7ff56f28c0c14aee559ad (patch)
treec5097eca333d396016b641baca198635ddbfc6df /config/openbsd3-config.py
parenta19366f34a7d619492159d7beb5d459abf583a9d (diff)
=== SCons ===
* BlenderLib now expects lists for all compiler related flags (release, profile, debug, warn). I changed the default config files, but do double-check your user-config files, esp. if you did a full copy of an old default platform config
Diffstat (limited to 'config/openbsd3-config.py')
-rw-r--r--config/openbsd3-config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/openbsd3-config.py b/config/openbsd3-config.py
index 0a4f75e3bcc..9313cbc211f 100644
--- a/config/openbsd3-config.py
+++ b/config/openbsd3-config.py
@@ -155,11 +155,11 @@ LLIBS = 'm stdc++ pthread util'
##LOPTS = --dynamic
##DYNLDFLAGS = -shared $(LDFLAGS)
-BF_PROFILE_FLAGS = ' -pg -g '
+BF_PROFILE_FLAGS = ['-pg', '-g']
BF_PROFILE = False
BF_DEBUG = False
-BF_DEBUG_FLAGS = '-g'
+BF_DEBUG_FLAGS = ['-g']
BF_BUILDDIR='../build/openbsd3'
BF_INSTALLDIR='../install/openbsd3'