diff options
author | Rosen Penev <rosenp@gmail.com> | 2021-10-18 01:30:55 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2021-10-23 17:03:12 -0700 |
commit | dc701d61b9996aa03278a7f4211a5cc4382da585 (patch) | |
tree | f801fae0f94035148ec2e8db5b35e6d355ce98cc /libs/libxml2 | |
parent | 4160ba8725b0812091ec630b232d3a84062699ea (diff) |
libxml2: don't build host shared libraries
Avoids having to add
HOST_LDFLAGS: -Wl,-rpath,$(STAGING_DIR_HOSTPKG)/lib
for packages that rely on shared libraries.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'libs/libxml2')
-rw-r--r-- | libs/libxml2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/libxml2/Makefile b/libs/libxml2/Makefile index ab50e1219..82651faff 100644 --- a/libs/libxml2/Makefile +++ b/libs/libxml2/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libxml2 PKG_VERSION:=2.9.12 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://xmlsoft.org/sources/ @@ -103,7 +103,7 @@ CONFIGURE_ARGS += \ --without-lzma HOST_CONFIGURE_ARGS += \ - --enable-shared \ + --disable-shared \ --enable-static \ --with-c14n \ --without-catalog \ |