diff options
| author | nakeee <nakeee@gmail.com> | 2008-09-16 16:50:09 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2008-09-16 16:50:09 +0000 |
| commit | 0f4c4b6e1caa9b042ce8452e7553ee472e5204e8 (patch) | |
| tree | 93e181ae1db6144ebcaedbca29d1476489fd9784 /Source/Core | |
| parent | d36844799b9f2424dfdcd94d525cfe46558013c7 (diff) | |
SConscript made all the rest of env.Copy into env.Clone
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@542 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DebuggerWX/src/SConscript | 2 | ||||
| -rw-r--r-- | Source/Core/DolphinWX/Src/SConscript | 2 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/Src/SConscript | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DebuggerWX/src/SConscript b/Source/Core/DebuggerWX/src/SConscript index 27935d8cc4..5532bf23b7 100644 --- a/Source/Core/DebuggerWX/src/SConscript +++ b/Source/Core/DebuggerWX/src/SConscript @@ -15,7 +15,7 @@ files = ["LogWindow.cpp", "RegisterView.cpp", "JitWindow.cpp", ] -wxenv = env.Copy() +wxenv = env.Clone() wxenv.Append( CXXFLAGS = ' ' + ' '.join([ '`wx-config --cppflags`', diff --git a/Source/Core/DolphinWX/Src/SConscript b/Source/Core/DolphinWX/Src/SConscript index c37f148fc4..b7476a3df3 100644 --- a/Source/Core/DolphinWX/Src/SConscript +++ b/Source/Core/DolphinWX/Src/SConscript @@ -20,7 +20,7 @@ libs = [ 'debwx', 'core', 'minilzo', 'discio', 'bdisasm', 'videocommon', 'common', 'z' ] -wxenv = env.Copy() +wxenv = env.Clone() wxenv.Append( CXXFLAGS = ' ' + ' '.join([ '`wx-config --cppflags`', diff --git a/Source/Core/VideoCommon/Src/SConscript b/Source/Core/VideoCommon/Src/SConscript index 012ac7b8d7..6744ac23cb 100644 --- a/Source/Core/VideoCommon/Src/SConscript +++ b/Source/Core/VideoCommon/Src/SConscript @@ -12,6 +12,6 @@ files = [ "Profiler.cpp", ] -env_common = env.Copy() +env_common = env.Clone() env_common.Append(CXXFLAGS = ' ' + ' '.join([ '-fPIC' ])) env_common.StaticLibrary("videocommon", files) |
