mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-24 15:56:49 +00:00
build: fix getting ABI version for binary packages from the same source package
We can't rely on the .version file being created yet, so use package variables to get it Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
1132340a22
commit
7d6a636918
@ -43,5 +43,5 @@ endef
|
|||||||
|
|
||||||
# 1: package name
|
# 1: package name
|
||||||
define GetABISuffix
|
define GetABISuffix
|
||||||
$(if $(filter-out kmod-%,$(1)),$(foreach v,$(wildcard $(STAGING_DIR)/pkginfo/$(1).version),$(shell cat $(v))))
|
$(if $(filter-out kmod-%,$(1)),$(if $(ABIV_$(1)),$(ABIV_$(1)),$(foreach v,$(wildcard $(STAGING_DIR)/pkginfo/$(1).version),$(shell cat $(v)))))
|
||||||
endef
|
endef
|
||||||
|
Loading…
Reference in New Issue
Block a user