diff options
| author | Christian Marangi | 2025-10-29 10:48:17 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-10-29 20:09:55 +0000 |
| commit | 736494deeca2da5f17ee244cb8440856ce4d7ce4 (patch) | |
| tree | be9054b9657eb80273398025aecdcca2259cfa4b | |
| parent | be3722d86b08e116a371a127c3804fcafde623ab (diff) | |
| download | openwrt-736494deeca2da5f17ee244cb8440856ce4d7ce4.tar.gz | |
cli: drop usage of AUTORELEASE
AUTORELEASE has been deprecated from a long time. Drop it and hardcode
the release following the current one present in the downloads
repository.
Link: https://github.com/openwrt/openwrt/pull/20586
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | package/utils/cli/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/utils/cli/Makefile b/package/utils/cli/Makefile index 65eae06309..788d8f4eb2 100644 --- a/package/utils/cli/Makefile +++ b/package/utils/cli/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=cli -PKG_RELEASE:=$(AUTORELEASE) +PKG_RELEASE:=14 PKG_LICENSE:=GPL-2.0 PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name> |