Commit f9b48616ef47 ("host-xz: Don't build with shared libs") disabled
building of shared libs, but we now need them for host-casync package.
As host-gettext package is build with --without-xz now, mixing system
and host libraries original commit solved is no longer an issue.Signed-off-by: Ladislav Michl <[email protected]> --- CHANGES: -v2: new patch rules/host-xz.make | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/rules/host-xz.make b/rules/host-xz.make index c02a9449e..ee7131479 100644 --- a/rules/host-xz.make +++ b/rules/host-xz.make @@ -21,7 +21,6 @@ HOST_PACKAGES-$(PTXCONF_HOST_XZ) += host-xz HOST_XZ_CONF_TOOL := autoconf HOST_XZ_CONF_OPT := \ $(HOST_AUTOCONF) \ - --libdir=/lib/xz \ --disable-debug \ --disable-external-sha256 \ --enable-assembler \ @@ -33,11 +32,11 @@ HOST_XZ_CONF_OPT := \ --disable-lzmainfo \ --disable-lzma-links \ --disable-scripts \ - --disable-shared \ --disable-doc \ --enable-symbol-versions \ --disable-sandbox \ - --enable-static \ + --enable-shared \ + --disable-static \ --disable-nls \ --enable-rpath \ --enable-unaligned-access=auto \ -- 2.24.0.rc2 _______________________________________________ ptxdist mailing list [email protected]
