curl: fix release number

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 <datapronix@protonmail.com>
This commit is contained in:
Sean Khan 2024-04-11 20:10:26 -04:00
parent 1cdbbea0ac
commit de3e87aa39
1 changed files with 1 additions and 1 deletions

View File

@ -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))/ \