diff options
author | Rosen Penev <rosenp@gmail.com> | 2022-03-19 16:18:49 -0700 |
---|---|---|
committer | Christian Lamparter <chunkeey@gmail.com> | 2022-03-27 14:38:13 +0200 |
commit | f8571749a77ea23b418c84692220083858c1df79 (patch) | |
tree | a9cd7426376df2a498b59850f4740c0e8c49098b | |
parent | 8a75ed4ba07b9d64ae547ce36873e51ba54f0eaf (diff) | |
download | upstream-f8571749a77ea23b418c84692220083858c1df79.tar.gz upstream-f8571749a77ea23b418c84692220083858c1df79.tar.bz2 upstream-f8571749a77ea23b418c84692220083858c1df79.zip |
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 <rosenp@gmail.com>
-rw-r--r-- | package/libs/pcre/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
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 \ |