diff options
author | Matthew Waters <matthew@centricular.com> | 2018-10-16 23:12:43 +1100 |
---|---|---|
committer | Matthew Waters <matthew@centricular.com> | 2018-10-16 23:14:52 +1100 |
commit | e2849eebd175cb71a6220c481a9bbae8022b4823 (patch) | |
tree | b1878ecbdba255981862ea47ef19d1dbf6b36678 /recipes/build-tools/glib-tools.recipe | |
parent | 1225ec54d3d5de3f3dbb311033c18c5f949fd425 (diff) |
bootstrap: always build glib-tools when targetting non-linux
Fixes out of date glib tools throwing errors.
/usr/bin/glib-genmarshal --prefix _gdk_pixbuf_marshal --output gdk-pixbuf/gdk-pixbuf-marshal.h --pragma-once --header ../gdk-pixbuf/gdk-pixbuf-marshal.list
FAILED: gdk-pixbuf/gdk-pixbuf-marshal.h
/usr/bin/glib-genmarshal --prefix _gdk_pixbuf_marshal --output gdk-pixbuf/gdk-pixbuf-marshal.h --pragma-once --header ../gdk-pixbuf/gdk-pixbuf-marshal.list
(process:12337): GLib-Genmarshal-WARNING **: failed to open "--output": No such file or directory
(process:12337): GLib-Genmarshal-WARNING **: failed to open "gdk-pixbuf/gdk-pixbuf-marshal.h": No such file or directory
(process:12337): GLib-Genmarshal-WARNING **: failed to open "--pragma-once": No such file or directory
...
Diffstat (limited to 'recipes/build-tools/glib-tools.recipe')
-rw-r--r-- | recipes/build-tools/glib-tools.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/build-tools/glib-tools.recipe b/recipes/build-tools/glib-tools.recipe index 7b45b9a7..744d2196 100644 --- a/recipes/build-tools/glib-tools.recipe +++ b/recipes/build-tools/glib-tools.recipe @@ -11,7 +11,7 @@ class Recipe(recipe.Recipe): licenses = [License.LGPLv2Plus] btype = BuildType.MESON meson_options = {'gtk_doc': 'false', 'internal_pcre': 'true', 'libmount': 'false', - 'dtrace': 'false', 'iconv': 'libc'} + 'dtrace': 'false', 'iconv': 'libc', 'selinux' : 'false'} deps = ['libffi', 'zlib'] patches = ['../glib/glib-2.57-meson-backported-fixes.patch', '../glib/0001-DO-NOT-UPSTREAM-Prototypes-missing-in-Cerbero-s-anci.patch', |