From 95e56cf644dcb8501c1e443a57b70141a32d5a7a Mon Sep 17 00:00:00 2001 From: Sven Eckelmann Date: Sun, 7 Oct 2018 11:10:05 +0200 Subject: [PATCH] alfred: 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 --- alfred/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/alfred/Makefile b/alfred/Makefile index a0d25a5..ef260ad 100644 --- a/alfred/Makefile +++ b/alfred/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=alfred PKG_VERSION:=2018.1 -PKG_RELEASE:=0 +PKG_RELEASE:=1 PKG_HASH:=808fa6acf65c7a8e26405115176a5587157f746108cbe5dd974788eb05416d76 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -59,7 +59,8 @@ MAKE_ALFRED_FLAGS=\ CONFIG_ALFRED_GPSD=$(if $(CONFIG_PACKAGE_ALFRED_GPSD),y,n) \ CONFIG_ALFRED_CAPABILITIES=n \ LIBNL_NAME="libnl-tiny" \ - LIBNL_GENL_NAME="libnl-tiny" + LIBNL_GENL_NAME="libnl-tiny" \ + REVISION="openwrt-$(PKG_VERSION)-$(PKG_RELEASE)" TARGET_CFLAGS += -ffunction-sections -fdata-sections -flto TARGET_LDFLAGS += -Wl,--gc-sections -fuse-linker-plugin -- 2.30.2