Repository : ssh://git@open-mesh.org/openwrt-feed-devel
On branch : master
commit 0db1eb570c53aea89094ec5bd087415babf11cad Author: Sven Eckelmann sven@narfation.org Date: Fri Oct 26 09:15:57 2018 +0200
alfred-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@narfation.org
0db1eb570c53aea89094ec5bd087415babf11cad alfred-devel/Makefile | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/alfred-devel/Makefile b/alfred-devel/Makefile index f308bf7..75379bb 100644 --- a/alfred-devel/Makefile +++ b/alfred-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