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.
This commit is contained in:
Michel Selten 2004-01-25 20:57:25 +00:00
parent 8b53b30563
commit c8d8b2c4de
1 changed files with 1 additions and 1 deletions

View File

@ -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')