Skip to content

Commit

Permalink
luci.mk: include release in version number
Browse files Browse the repository at this point in the history
Fixes issue mentioned in openwrt#7009 (comment)
where the IPK filename doesn't contain release from the luci-app Makefile.

Signed-off-by: Stan Grishin <stangri@melmac.ca>
  • Loading branch information
stangri committed Apr 8, 2024
1 parent 03418d4 commit a9664a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion luci.mk
Expand Up @@ -153,7 +153,7 @@ ifneq ($(LUCI_SUBMENU),none)
endif
TITLE:=$(if $(LUCI_TITLE),$(LUCI_TITLE),LuCI $(LUCI_NAME) $(LUCI_TYPE))
DEPENDS:=$(LUCI_DEPENDS)
VERSION:=$(if $(PKG_VERSION),$(PKG_VERSION),$(PKG_SRC_VERSION))
VERSION:=$(if $(PKG_VERSION),$(if $(PKG_RELEASE),$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_VERSION)),$(PKG_SRC_VERSION))
$(if $(LUCI_EXTRA_DEPENDS),EXTRA_DEPENDS:=$(LUCI_EXTRA_DEPENDS))
$(if $(LUCI_PKGARCH),PKGARCH:=$(LUCI_PKGARCH))
$(if $(PKG_PROVIDES),PROVIDES:=$(PKG_PROVIDES))
Expand Down

0 comments on commit a9664a7

Please sign in to comment.