summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/SConscript
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2008-09-16 16:50:09 +0000
committernakeee <nakeee@gmail.com>2008-09-16 16:50:09 +0000
commit0f4c4b6e1caa9b042ce8452e7553ee472e5204e8 (patch)
tree93e181ae1db6144ebcaedbca29d1476489fd9784 /Source/Core/VideoCommon/Src/SConscript
parentd36844799b9f2424dfdcd94d525cfe46558013c7 (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/VideoCommon/Src/SConscript')
-rw-r--r--Source/Core/VideoCommon/Src/SConscript2
1 files changed, 1 insertions, 1 deletions
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)