aboutsummaryrefslogtreecommitdiffstats
path: root/main/gobject-introspection/0008-scanner-split-CC-environment-variable.patch
blob: 24a12df912f98d13fc93d84e0234f39a4bd21e88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
From 99abcd268792ef3531346a7f885cc55d2ab0f8f4 Mon Sep 17 00:00:00 2001
From: Natanael Copa <ncopa@alpinelinux.org>
Date: Mon, 10 Oct 2011 13:37:55 +0000
Subject: [PATCH 8/8] scanner: split CC environment variable

This fixes compilation where CC="ccache gcc" and similar.

https://bugzilla.gnome.org/show_bug.cgi?id=660160

Signed-off-by: Natanael Copa <ncopa@alpinelinux.org>
---
 giscanner/sourcescanner.py |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/giscanner/sourcescanner.py b/giscanner/sourcescanner.py
index 5f0ec2d..1e61ecf 100644
--- a/giscanner/sourcescanner.py
+++ b/giscanner/sourcescanner.py
@@ -274,7 +274,8 @@ class SourceScanner(object):
 
         defines = ['__GI_SCANNER__']
         undefs = []
-        cpp_args = [os.environ.get('CC', 'cc'), '-E', '-C', '-I.', '-']
+        cpp_args = os.environ.get('CC', 'cc').split()
+        cpp_args += ['-E', '-C', '-I.', '-']
 
         cpp_args += self._cpp_options
         proc = subprocess.Popen(cpp_args,
-- 
1.7.7