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:
parent
79a3b31431
commit
4bdb1ebd7d
7 changed files with 40 additions and 40 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue