diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2017-01-10 22:55:23 +0100 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2017-01-10 22:55:23 +0100 |
commit | eeba8184fe30ed48b0c45e1f53195a22f5bf5b61 (patch) | |
tree | b84a4e7ea788b312cae4c1a30453c594de23c686 /meta-sota/recipes-support | |
parent | b1849d728a942acfbe0a265828a578b84a3959af (diff) |
Fix build of libgsystem on morty
Add the dependency gtk-doc-native and enforce autoreconf to run.
Change-Id: Iff565cb8193f17d9ab9cfca7e5323440515ccb15
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'meta-sota/recipes-support')
-rw-r--r-- | meta-sota/recipes-support/libgsystem/libgsystem_git.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta-sota/recipes-support/libgsystem/libgsystem_git.bb b/meta-sota/recipes-support/libgsystem/libgsystem_git.bb index 181dd42..92ac386 100644 --- a/meta-sota/recipes-support/libgsystem/libgsystem_git.bb +++ b/meta-sota/recipes-support/libgsystem/libgsystem_git.bb @@ -9,7 +9,7 @@ S = "${WORKDIR}/git" inherit autotools-brokensep gobject-introspection -DEPENDS += "attr glib-2.0 pkgconfig libcap" +DEPENDS += "attr glib-2.0 pkgconfig libcap gtk-doc-native" RDEPENDS_${PN} = "xz systemd" RDEPENDS_${PN}_remove_class-native = "systemd-native" @@ -20,7 +20,8 @@ export STAGING_INCDIR export STAGING_LIBDIR do_configure() { - NOCONFIGURE=true ./autogen.sh + #NOCONFIGURE=true ./autogen.sh + autoreconf -vfi oe_runconf } |