diff options
author | Jo-Philipp Wich <jo@mein.io> | 2019-01-18 12:43:06 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2019-01-19 14:32:01 +0100 |
commit | e3d5b384aa67c5562d59e8745fc6c48a9f2a997d (patch) | |
tree | 3aeaea3536e225f2a0986e1311ce07581fd78e80 /include | |
parent | 2d9d57b9de230e1f397c1396f4fb7dfae34d3855 (diff) | |
download | upstream-e3d5b384aa67c5562d59e8745fc6c48a9f2a997d.tar.gz upstream-e3d5b384aa67c5562d59e8745fc6c48a9f2a997d.tar.bz2 upstream-e3d5b384aa67c5562d59e8745fc6c48a9f2a997d.zip |
build: expose ABI version in .packageauxvars
Subdequent commits need this information to resolve the ABI version when
computing binary ipk dependencies.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'include')
-rw-r--r-- | include/package-dumpinfo.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/package-dumpinfo.mk b/include/package-dumpinfo.mk index 8a42be5bd1..ef98c482fb 100644 --- a/include/package-dumpinfo.mk +++ b/include/package-dumpinfo.mk @@ -24,7 +24,8 @@ $(if $(MENU),Menu: $(MENU) )$(if $(DEFAULT),Default: $(DEFAULT) )$(if $(findstring $(PREREQ_CHECK),1),Prereq-Check: 1 )Version: $(VERSION) -Depends: $(call PKG_FIXUP_DEPENDS,$(1),$(DEPENDS)) +$(if $(ABI_VERSION),ABIVersion: $(ABI_VERSION) +)Depends: $(call PKG_FIXUP_DEPENDS,$(1),$(DEPENDS)) Conflicts: $(CONFLICTS) Menu-Depends: $(MDEPENDS) Provides: $(PROVIDES) |