From 3d9b6df7d8f4ee52721bbd0693795367d987eb7d Mon Sep 17 00:00:00 2001 From: Tianling Shen Date: Thu, 1 Jun 2023 16:05:11 +0800 Subject: [PATCH] gawk: disable mpfr detection Disable mpfr detection to fix a build error due to (unncessary) missing dependency: ``` Package gawk is missing dependencies for the following libraries: libgmp.so.10 libmpfr.so.6 ``` Signed-off-by: Tianling Shen --- utils/gawk/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/gawk/Makefile b/utils/gawk/Makefile index a8bd99f5d0..42deed8e67 100644 --- a/utils/gawk/Makefile +++ b/utils/gawk/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=gawk PKG_VERSION:=5.2.1 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@GNU/gawk @@ -29,6 +29,8 @@ define Package/gawk DEPENDS:=+libncursesw +libreadline endef +CONFIGURE_ARGS+= --disable-mpfr + define Package/gawk/install $(INSTALL_DIR) $(1)/usr/bin $(CP) $(PKG_INSTALL_DIR)/usr/bin/gawk $(1)/usr/bin/ -- 2.30.2