From acf7c084c5e13de262d866b896e9b30a0739eecf Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 25 Feb 2009 17:25:28 +0000 Subject: Handle multiple arguments for $CC This makes the dumper not fail for people who set $CC to e.g. "distcc gcc". --- 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') -- cgit v0.9.1