diff options
author | Tim Lunn <tim@feathertop.org> | 2013-02-24 17:34:56 +1100 |
---|---|---|
committer | Tim Lunn <tim@feathertop.org> | 2013-03-06 08:19:04 +1100 |
commit | 95b03cf87efbd4fea4b7d55601c9752cefd29bfc (patch) | |
tree | ccb47a22b628973575044505b238db29fe7dd107 /Makefile.introspection | |
parent | 8f7acc600b45ea5bf8ea1d6ce1fbedb5c6f9cfd5 (diff) | |
download | gobject-introspection-95b03cf87efbd4fea4b7d55601c9752cefd29bfc.tar.gz |
gi-r-scanner: add support for raw CFLAGS flags option
gi-r-scanner chokes when gir_CFLAGS have an '-include <header>' since
this is not a recognised option. This commit adds a new --cflags option
that passes cflags directly to the spawned gcc.
https://bugzilla.gnome.org/show_bug.cgi?id=695182
Diffstat (limited to 'Makefile.introspection')
-rw-r--r-- | Makefile.introspection | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.introspection b/Makefile.introspection index 567d5e96..8424c738 100644 --- a/Makefile.introspection +++ b/Makefile.introspection @@ -142,7 +142,7 @@ $(1): $$($(_gir_name)_FILES) $(_gir_program) \ $(_gir_libraries) \ $($(_gir_name)_SCANNERFLAGS) \ - $($(_gir_name)_CFLAGS) \ + --cflags="$($(_gir_name)_CFLAGS)" \ $($(_gir_name)_LDFLAGS) \ $$^ \ --output $(1) |