diff options
| author | Christian Marangi | 2025-10-29 10:46:12 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-10-29 20:09:55 +0000 |
| commit | be3722d86b08e116a371a127c3804fcafde623ab (patch) | |
| tree | f6c0e5d7da47270499454f1765eba95cb4ada0ab | |
| parent | 2b773bddeb7695076691e3247efcf0b604a2154a (diff) | |
| download | openwrt-be3722d86b08e116a371a127c3804fcafde623ab.tar.gz | |
ucode-mod-uline: 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/ucode-mod-uline/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/utils/ucode-mod-uline/Makefile b/package/utils/ucode-mod-uline/Makefile index 50aecd4f7f..f345b29037 100644 --- a/package/utils/ucode-mod-uline/Makefile +++ b/package/utils/ucode-mod-uline/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ucode-mod-uline -PKG_RELEASE:=$(AUTORELEASE) +PKG_RELEASE:=8 PKG_LICENSE:=GPL-2.0-or-later PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name> |