If gettext-full happens to be built after glib2/host, it picks up the host build and tries to link to it with an inappropriate rpath. Instead of working around the issue, just use the included glib to avoid it.
Signed-off-by: Rosen Penev <[email protected]> --- package/libs/gettext-full/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/libs/gettext-full/Makefile b/package/libs/gettext-full/Makefile index 2e65571701..b5699c33e3 100644 --- a/package/libs/gettext-full/Makefile +++ b/package/libs/gettext-full/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=gettext-full PKG_VERSION:=0.19.8.1 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=gettext-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@GNU/gettext @@ -69,8 +69,8 @@ HOST_CONFIGURE_ARGS += \ --disable-native-java \ --disable-openmp \ --without-emacs \ - --without-libxml2-prefix - + --without-libxml2-prefix \ + --with-included-glib HOST_CONFIGURE_VARS += \ EMACS="no" \ -- 2.26.2 _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/mailman/listinfo/openwrt-devel
