From f8571749a77ea23b418c84692220083858c1df79 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sat, 19 Mar 2022 16:18:49 -0700 Subject: [PATCH] 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 --- package/libs/pcre/Makefile | 1 + 1 file changed, 1 insertion(+) 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 \ -- 2.30.2