From 79bfe372f2bfa633c457e82a3e37f3eb42af4b5b Mon Sep 17 00:00:00 2001 From: Michal Krol Date: Wed, 19 Nov 2008 20:31:38 +0100 Subject: scons: Fix toolchain selection. --- scons/gallium.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'scons/gallium.py') diff --git a/scons/gallium.py b/scons/gallium.py index 4622903edd..59ec6eccf8 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 -- cgit v1.2.3