diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2012-12-12 09:15:22 +1000 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2012-12-12 08:06:45 -0500 |
commit | 54aaf14da2e02f1c8e60c1c5229c9b7d5932482d (patch) | |
tree | 7d930f62b27b28a37525ee4b6e971edfe866c53d /common.mk | |
parent | f8e95c68dc0e4a0fb35979db7415de8ec09e1e7e (diff) | |
download | gobject-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
Diffstat (limited to 'common.mk')
-rw-r--r-- | common.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) \ |