summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2012-12-12 09:15:22 +1000
committerColin Walters <walters@verbum.org>2012-12-12 08:06:45 -0500
commit54aaf14da2e02f1c8e60c1c5229c9b7d5932482d (patch)
tree7d930f62b27b28a37525ee4b6e971edfe866c53d
parentf8e95c68dc0e4a0fb35979db7415de8ec09e1e7e (diff)
downloadgobject-introspection-54aaf14da2e02f1c8e60c1c5229c9b7d5932482d.tar.gz
common.mk: escape $CC in quotes
If CC is defined at "ccache gcc", the expanded command ends up as: env PATH=... CC=ccache gcc PYTHONPATH=... ./g-ir-scanner causing compilation errors. https://bugzilla.gnome.org/show_bug.cgi?id=690074
-rw-r--r--common.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mk b/common.mk
index f67b2e83..87ceaee2 100644
--- a/common.mk
+++ b/common.mk
@@ -9,7 +9,7 @@
INTROSPECTION_SCANNER = \
env PATH=.libs:$(PATH) \
LPATH=.libs \
- CC=$(CC) \
+ CC="$(CC)" \
PYTHONPATH=$(top_builddir):$(top_srcdir) \
UNINSTALLED_INTROSPECTION_SRCDIR=$(top_srcdir) \
UNINSTALLED_INTROSPECTION_BUILDDIR=$(top_builddir) \