From: Rosen Penev Date: Mon, 11 Nov 2024 01:14:55 +0000 (-0800) Subject: lftp: fix expat under GCC14 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=31c729da730d0a974e918a296c2252d808259a3c;p=feed%2Fpackages.git lftp: fix expat under GCC14 For some weird reason, it tries to use OS directories. Override. Signed-off-by: Rosen Penev --- diff --git a/net/lftp/Makefile b/net/lftp/Makefile index b785c92c36..ced299ebad 100644 --- a/net/lftp/Makefile +++ b/net/lftp/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=lftp PKG_VERSION:=4.9.2 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://lftp.tech/ftp/ \ @@ -50,6 +50,7 @@ CONFIGURE_ARGS += \ --without-gnutls \ --without-libidn2 \ --without-libresolv \ + --with-expat="$(STAGING_DIR)/usr" \ --with-openssl="$(STAGING_DIR)/usr" \ --with-readline="$(STAGING_DIR)/usr" \ --with-zlib="$(STAGING_DIR)/usr" \