diff options
| author | Robert Marko | 2024-03-13 11:47:31 +0000 |
|---|---|---|
| committer | Robert Marko | 2024-03-13 13:02:23 +0000 |
| commit | 694e6477848eade21851ec27d90c173b373099fc (patch) | |
| tree | 1474b474806707b9afb62d7fa6ae11cf83fc2f13 | |
| parent | 33c812b6398951406914f060b07a511b22ae823f (diff) | |
| download | openwrt-694e6477848eade21851ec27d90c173b373099fc.tar.gz | |
dnsmasq: reset PKG_RELEASE
dnsmasq was recently updated to 2.90, but PKG_RELEASE was not reset to 1.
Fixes: 838a27f64f56 ("dnsmasq: version 2.90")
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | package/network/services/dnsmasq/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/dnsmasq/Makefile b/package/network/services/dnsmasq/Makefile index d2de74d9da..9020278d53 100644 --- a/package/network/services/dnsmasq/Makefile +++ b/package/network/services/dnsmasq/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=dnsmasq PKG_UPSTREAM_VERSION:=2.90 PKG_VERSION:=$(subst test,~~test,$(subst rc,~rc,$(PKG_UPSTREAM_VERSION))) -PKG_RELEASE:=8 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_UPSTREAM_VERSION).tar.xz PKG_SOURCE_URL:=https://thekelleys.org.uk/dnsmasq/ |