Mesa (master): scons: Fix inverted logic.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Thu Aug 26 17:29:10 UTC 2010


Module: Mesa
Branch: master
Commit: 64b5a81e19477f26a9aebf865394e3974e7be3b3
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=64b5a81e19477f26a9aebf865394e3974e7be3b3

Author: José Fonseca <jfonseca at vmware.com>
Date:   Thu Aug 26 18:28:29 2010 +0100

scons: Fix inverted logic.

---

 src/talloc/SConscript |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/talloc/SConscript b/src/talloc/SConscript
index a4861a9..3bf7029 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')




More information about the mesa-commit mailing list