Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/giscanner/dumper.py
diff options
context:
space:
mode:
Diffstat (limited to 'giscanner/dumper.py')
-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')