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:
authorKent Mein <mein@cs.umn.edu>2007-03-05 23:50:36 +0300
committerKent Mein <mein@cs.umn.edu>2007-03-05 23:50:36 +0300
commit8d95e59feae698c0f6cf23654647561ec5997bcb (patch)
treeac4f20c2fa3b9d3bcf245f9d0c3e6cd549a89ac5 /source/blender/makesdna/intern/SConscript
parentee79b599ea4cc8e498c55abdb77e6b5e832febfe (diff)
extra space in CCFLAGS was causing problems on some systems.
reported on irc... by bdiego Kent
Diffstat (limited to 'source/blender/makesdna/intern/SConscript')
-rw-r--r--source/blender/makesdna/intern/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/intern/SConscript b/source/blender/makesdna/intern/SConscript
index ae5d446bcc3..25f86e9ba92 100644
--- a/source/blender/makesdna/intern/SConscript
+++ b/source/blender/makesdna/intern/SConscript
@@ -11,7 +11,7 @@ source_files = ['makesdna.c', '#intern/guardedalloc/intern/mallocn.c']
makesdna_tool = env.Copy()
dna = env.Copy()
-makesdna_tool.Append(CCFLAGS = ' -DBASE_HEADER="\\"source/blender/makesdna/\\"" ')
+makesdna_tool.Append(CCFLAGS = '-DBASE_HEADER="\\"source/blender/makesdna/\\"" ')
makesdna_tool.Append (CPPPATH = ['#/intern/guardedalloc',
'../../makesdna'])