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:
authorMichel Selten <michel@mselten.demon.nl>2004-01-25 23:57:25 +0300
committerMichel Selten <michel@mselten.demon.nl>2004-01-25 23:57:25 +0300
commitc8d8b2c4debda013dc2eb4df861e24c09e802d3d (patch)
tree486eede0fdd18e2f0a1048f9d916787ddc3d6607 /source/blender/makesdna/intern/SConscript
parent8b53b3056314f5304a3d0cac9a27b878136264de (diff)
SCons update
* makesdna generates dna.c which in turn should be compiled with nice cflags, linkflags etc. But, a small error slipped in which caused the .c file to be compiled into a nice .o file without those flags. Thanks to Hos for pointing out the error and persisting there indeed was an error.
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 f0f10a530a9..03a2dbd5473 100644
--- a/source/blender/makesdna/intern/SConscript
+++ b/source/blender/makesdna/intern/SConscript
@@ -44,5 +44,5 @@ if sys.platform=='win32':
dna.Command ('dna.c', '', "source\\blender\\makesdna\\intern\\makesdna $TARGET")
else:
dna.Command ('dna.c', '', "source/blender/makesdna/intern/makesdna $TARGET")
-obj = Object ('dna.c')
+obj = 'intern/dna.c'
Return ('obj')