summaryrefslogtreecommitdiff
path: root/src/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/SConscript')
-rwxr-xr-xsrc/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SConscript b/src/SConscript
index 5a7d7d29d..9f11a45f3 100755
--- a/src/SConscript
+++ b/src/SConscript
@@ -901,7 +901,7 @@ def makeEnv(label, objsfx, strip = False, **kwargs):
test_sources = Source.get(**flags)
test_objs = [ make_obj(s, static=True) for s in test_sources ]
testname = "unittest/%s.%s" % (test.target, label)
- new_env.Program(testname, main_objs + test_objs + static_objs)
+ new_env.Program(testname, test_objs + static_objs)
progname = exename
if strip: