Copy is deprecated by Clone in scons 0.96.93

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4813 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2006-11-11 13:04:35 +00:00
parent 79a3b31431
commit 4bdb1ebd7d
7 changed files with 40 additions and 40 deletions

View file

@ -15,27 +15,27 @@ defenv['SUBSYS_CON'] = ''
### stub environment
stub_env = defenv.Copy()
stub_env = defenv.Clone()
### makensis environment
makensis_env = defenv.Copy()
makensis_env = defenv.Clone()
### plugin environment
plugin_env = defenv.Copy(no_import_lib = 1)
plugin_env = defenv.Clone(no_import_lib = 1)
### util environment
util_env = defenv.Copy()
util_env = defenv.Clone()
### cross-platform util environment
cp_util_env = util_env.Copy()
cp_util_env = util_env.Clone()
### test environment
test_env = defenv.Copy()
test_env = defenv.Clone()
# return