From: Rosen Penev Date: Sat, 19 Mar 2022 23:18:49 +0000 (-0700) Subject: pcre: disable shared libraries for host builds X-Git-Tag: v23.05.0-rc1~3809 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=f8571749a77ea23b418c84692220083858c1df79;p=openwrt%2Fstaging%2Fhauke.git pcre: disable shared libraries for host builds Getting rid of shared libraries for hostpkg avoids having to use rpath hacks to find the library. It also fixes compilation with host glib2 binaries. Signed-off-by: Rosen Penev --- diff --git a/package/libs/pcre/Makefile b/package/libs/pcre/Makefile index 42149fc511..43267562ea 100644 --- a/package/libs/pcre/Makefile +++ b/package/libs/pcre/Makefile @@ -62,6 +62,7 @@ define Package/libpcrecpp endef HOST_CONFIGURE_ARGS += \ + --disable-shared \ --enable-utf8 \ --enable-unicode-properties \ --enable-pcre16 \