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-10-06 01:36:36 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2008-10-06 01:36:36 +0400
commit9d77cc922225f5a3409c4a734c30836069efea17 (patch)
treeac6ae92a6e7e9a1ec8bc6825cefcd0d71a45cdb7 /source/blender/makesdna/intern/SConscript
parent7bdb62900988b23a244ddcee516554d9f2916b85 (diff)
* use env.Clone() instead of deprecated env.Copy()
Diffstat (limited to 'source/blender/makesdna/intern/SConscript')
-rw-r--r--source/blender/makesdna/intern/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/intern/SConscript b/source/blender/makesdna/intern/SConscript
index 762f999fac6..417c6e8feb1 100644
--- a/source/blender/makesdna/intern/SConscript
+++ b/source/blender/makesdna/intern/SConscript
@@ -9,8 +9,8 @@ root_build_dir=env['BF_BUILDDIR']
source_files = ['makesdna.c']
-makesdna_tool = env.Copy()
-dna = env.Copy()
+makesdna_tool = env.Clone()
+dna = env.Clone()
makesdna_tool.Append(CCFLAGS = '-DBASE_HEADER="\\"source/blender/makesdna/\\"" ')
makesdna_tool.Append (CPPPATH = ['#/intern/guardedalloc',