From c8d8b2c4debda013dc2eb4df861e24c09e802d3d Mon Sep 17 00:00:00 2001 From: Michel Selten Date: Sun, 25 Jan 2004 20:57:25 +0000 Subject: [PATCH] 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. --- source/blender/makesdna/intern/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')