diff options
| author | Christian Marangi | 2025-10-29 10:49:48 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-10-29 20:09:56 +0000 |
| commit | afb83c81977220e86352f6868865dc3a69fc5f47 (patch) | |
| tree | cdd893b365063f17fe9bb016fb830adf0ff2b991 | |
| parent | 6a88ab5685b8ac11e377047db9cd97ad3fec12f7 (diff) | |
| download | openwrt-afb83c81977220e86352f6868865dc3a69fc5f47.tar.gz | |
unetmsg: 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/network/services/unetmsg/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/unetmsg/Makefile b/package/network/services/unetmsg/Makefile index eff2089d6b..bb1fe4ee22 100644 --- a/package/network/services/unetmsg/Makefile +++ b/package/network/services/unetmsg/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=unetmsg -PKG_RELEASE:=$(AUTORELEASE) +PKG_RELEASE:=14 PKG_LICENSE:=GPL-2.0 PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name> |