Mesa (gallium-0.2): scons: Fix toolchain selection.

Michał Król michal at kemper.freedesktop.org
Wed Nov 19 19:31:59 UTC 2008


Module: Mesa
Branch: gallium-0.2
Commit: 4f3dcf3864c3cbd8a6ebc6af38e53d57e4d421d6
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=4f3dcf3864c3cbd8a6ebc6af38e53d57e4d421d6

Author: Michal Krol <michal at tungstengraphics.com>
Date:   Wed Nov 19 20:31:38 2008 +0100

scons: Fix toolchain selection.

---

 scons/gallium.py |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/scons/gallium.py b/scons/gallium.py
index f7ac5e5..14065e4 100644
--- a/scons/gallium.py
+++ b/scons/gallium.py
@@ -174,10 +174,9 @@ def generate(env):
     platform = env['platform']
     if env['toolchain'] == 'default':
         if platform == 'winddk':
-            env['toolchain'] == 'winddk'
+            env['toolchain'] = 'winddk'
         elif platform == 'wince':
-            env.Tool('wcesdk')
-            env['toolchain'] == 'wcesdk'
+            env['toolchain'] = 'wcesdk'
     env.Tool(env['toolchain'])
 
     # shortcuts




More information about the mesa-commit mailing list