]> spindle.queued.net Git - midori/commitdiff
Split the value of "CC" so that "ccache gcc" works
authorEnrico Tröger <enrico.troeger@uvena.de>
Sun, 7 Jun 2009 16:42:48 +0000 (18:42 +0200)
committerChristian Dywan <christian@twotoasts.de>
Sun, 7 Jun 2009 16:42:48 +0000 (18:42 +0200)
wscript

diff --git a/wscript b/wscript
index 391c20827a6e4581e35cb46880bc083f5a6d1697..f7ccdfa81de1f142508d97fbbac2613e4006c79e 100644 (file)
--- a/wscript
+++ b/wscript
@@ -108,7 +108,7 @@ def configure (conf):
         conf.env.append_value ('CCFLAGS', '-mms-bitfields')
         conf.env['staticlib_LINKFLAGS'] = []
 
-        Utils.pprint ('BLUE', 'Mingw recognized, assuming chross compile.')
+        Utils.pprint ('BLUE', 'Mingw recognized, assuming cross compile.')
 
     dirname_default ('LIBDIR', os.path.join (conf.env['PREFIX'], 'lib'))
     if conf.env['PREFIX'] == '/usr':
@@ -194,7 +194,7 @@ def configure (conf):
     conf.define ('HAVE_HILDON', [0,1][hildon == 'yes'])
 
     # Store options in env, since 'Options' is not persistent
-    if 'CC' in os.environ: conf.env['CC'] = os.environ['CC']
+    if 'CC' in os.environ: conf.env['CC'] = os.environ['CC'].split()
     conf.env['addons'] = option_enabled ('addons')
     conf.env['docs'] = option_enabled ('docs')