From 31c729da730d0a974e918a296c2252d808259a3c Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sun, 10 Nov 2024 17:14:55 -0800 Subject: [PATCH] lftp: fix expat under GCC14 For some weird reason, it tries to use OS directories. Override. Signed-off-by: Rosen Penev --- net/lftp/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" \