From c903a445a866746b7b7bdea9fd0cd3455a800e50 Mon Sep 17 00:00:00 2001 From: Sven Eckelmann Date: Sun, 7 Oct 2018 11:10:05 +0200 Subject: [PATCH] batctl: Add openwrt revision to internal version OpenWrt is using a modified version of the software and these modifications may introduce extra bugs (or behavior changes). It is also patched for stable releases instead of switching to new releases. The revision should therefore be added to the version number to make it easier understandable which modified version the user may have installed. Signed-off-by: Sven Eckelmann --- batctl/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/batctl/Makefile b/batctl/Makefile index 832a8db..0b89941 100644 --- a/batctl/Makefile +++ b/batctl/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=batctl PKG_VERSION:=2018.3 -PKG_RELEASE:=0 +PKG_RELEASE:=1 PKG_HASH:=24e32d3fe8268ce0951903546e71b925b78b17acc8809ba899940f48a5e892e6 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -62,7 +62,8 @@ MAKE_BATCTL_ARGS += \ REVISION="$(PKG_BATCTL_SHORTREV)" \ CC="$(TARGET_CC)" \ DESTDIR="$(PKG_INSTALL_DIR)" \ - batctl install + batctl install \ + REVISION="openwrt-$(PKG_VERSION)-$(PKG_RELEASE)" define Build/Compile