Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2009-02-25 17:25:28 (GMT)
committer Colin Walters <walters@verbum.org>2009-02-25 17:25:28 (GMT)
commitacf7c084c5e13de262d866b896e9b30a0739eecf (patch)
tree80c83ad58ec0e93732a022b3c5d5471e5f06be6e
parentf3f8de20114405bae29a354d67c38a7bf0b096a2 (diff)
Handle multiple arguments for $CC
This makes the dumper not fail for people who set $CC to e.g. "distcc gcc".
-rw-r--r--giscanner/dumper.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/giscanner/dumper.py b/giscanner/dumper.py
index 95a66ab..c8f9927 100644
--- a/giscanner/dumper.py
+++ b/giscanner/dumper.py
@@ -165,7 +165,8 @@ class DumpCompiler(object):
return ['libtool']
def _compile(self, output, *sources):
- args = [self._compiler_cmd]
+ # Not strictly speaking correct, but easier than parsing shell
+ args = self._compiler_cmd.split()
if self._compiler_cmd == 'gcc':
args.append('-Wall')
pkgconfig_flags = self._run_pkgconfig('--cflags')