From 3f4a9a837436ba7975f657f786f23fe75bfe8e86 Mon Sep 17 00:00:00 2001 From: sbund <sbund@wiback.org> Date: Thu, 7 Sep 2006 11:44:30 +0000 Subject: [PATCH] Fixed library ordering in BoostUnitTest target --- satscons/BoostUnitTests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/satscons/BoostUnitTests.py b/satscons/BoostUnitTests.py index 4c3d44728..6976e12cd 100644 --- a/satscons/BoostUnitTests.py +++ b/satscons/BoostUnitTests.py @@ -11,8 +11,8 @@ def BoostUnitTests(env, target, source, test_source=None, LIBS = [], DEPENDS = [ else: test_source = [] testEnv = env.Copy(**kw) - testEnv.Append(LIBS = '$BOOSTTESTLIB') - testEnv.Append(LIBS = LIBS) + testEnv.Prepend(LIBS = '$BOOSTTESTLIB') + testEnv.Prepend(LIBS = LIBS) sources = [] if source: sources = sources + env.Object(source) -- GitLab