summaryrefslogtreecommitdiff
path: root/src/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/SConscript')
-rw-r--r--src/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SConscript b/src/SConscript
index a14e868fe..cb523aa94 100644
--- a/src/SConscript
+++ b/src/SConscript
@@ -1011,8 +1011,8 @@ def makeEnv(label, objsfx, strip = False, **kwargs):
# First make a library of everything but main() so other programs can
# link against m5.
- static_lib = new_env.StaticLibrary(libname, static_objs + static_objs)
- shared_lib = new_env.SharedLibrary(libname, shared_objs + shared_objs)
+ static_lib = new_env.StaticLibrary(libname, static_objs)
+ shared_lib = new_env.SharedLibrary(libname, shared_objs)
for target, sources in unit_tests:
objs = [ new_env.StaticObject(s) for s in sources ]