Repository : ssh://git@open-mesh.org/openwrt-feed-devel
On branch : master
---------------------------------------------------------------
commit 2a8c0fbc2ad850aabef8b63c5c0bf4564262eae1
Author: Sven Eckelmann <sven(a)narfation.org>
Date: Fri Oct 26 09:15:57 2018 +0200
batctl-devel: Suppress "error" about missing VERSION
The OpenWrt feeds script is trying to generate an index of packages and
then prints an error (actually warning) that this package doesn't have a
version.
The version of the package is not known yet because the source for the
package was not yet selected. To avoid that message, just set it to 0.0
when no other version information was specified.
Signed-off-by: Sven Eckelmann <sven(a)narfation.org>
---------------------------------------------------------------
2a8c0fbc2ad850aabef8b63c5c0bf4564262eae1
batctl-devel/Makefile | 2 ++
1 file changed, 2 insertions(+)
diff --git a/batctl-devel/Makefile b/batctl-devel/Makefile
index 4c0ba24..45d61f5 100644
--- a/batctl-devel/Makefile
+++ b/batctl-devel/Makefile
@@ -30,6 +30,8 @@ PKG_VERSION:=0.$(PKG_REV)
endif
PKG_LICENSE:=GPL-2.0
+PKG_REV?=0
+PKG_VERSION?=0.$(PKG_REV)
include $(INCLUDE_DIR)/package.mk