diff options
author | José Fonseca <[email protected]> | 2010-08-26 18:28:29 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-08-26 18:29:04 +0100 |
commit | 64b5a81e19477f26a9aebf865394e3974e7be3b3 (patch) | |
tree | a0850acc8cfbe6eb27de4c41a14eaefe0c1225c4 | |
parent | b8c53caac80f5f23b8bda9ee22c1c852efadca15 (diff) |
scons: Fix inverted logic.
-rw-r--r-- | src/talloc/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/talloc/SConscript b/src/talloc/SConscript index a4861a932e5..3bf7029bb25 100644 --- a/src/talloc/SConscript +++ b/src/talloc/SConscript @@ -12,7 +12,7 @@ talloc = env.SharedLibrary( env.InstallSharedLibrary(talloc) -if env['platform'] != 'windows': +if env['platform'] == 'windows': talloc = env.FindIxes(talloc, 'LIBPREFIX', 'LIBSUFFIX') else: talloc = env.FindIxes(talloc, 'SHLIBPREFIX', 'SHLIBSUFFIX') |