From a7ff3f752fe7a3db5c31814b65edb771287f7587 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 db157ec1b4..4d40f9c356 100644 --- a/package/libs/pcre/Makefile +++ b/package/libs/pcre/Makefile @@ -55,6 +55,7 @@ define Package/libpcre32 endef HOST_CONFIGURE_ARGS += \ + --disable-shared \ --enable-utf8 \ --enable-unicode-properties \ --enable-pcre16 \