From de3e87aa3986fdf0d96d97aad546f8c804ed0dcc Mon Sep 17 00:00:00 2001 From: Sean Khan Date: Thu, 11 Apr 2024 20:10:26 -0400 Subject: [PATCH] curl: fix release number MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With the recent change in how release numbers are derived, there can't be any letters in the $PKG_RELEASE. That is automatically calculated. Otherwise the following problem occurs: ``` ➤ opkg list-upgradable curl - 8.7.1-r1 - 8.7.1-rr1 libcurl4 - 8.7.1-r1 - 8.7.1-rr1 ``` Signed-off-by: Sean Khan --- net/curl/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/curl/Makefile b/net/curl/Makefile index 5ad13c4c5c..16a1c7f48b 100644 --- a/net/curl/Makefile +++ b/net/curl/Makefile @@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/nls.mk PKG_NAME:=curl PKG_VERSION:=8.7.1 -PKG_RELEASE:=r1 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=https://github.com/curl/curl/releases/download/curl-$(subst .,_,$(PKG_VERSION))/ \