diff options
| author | Christian Marangi | 2024-10-22 22:10:02 +0000 |
|---|---|---|
| committer | Christian Marangi | 2024-10-22 22:11:55 +0000 |
| commit | b6bbc76c0b2a18b0a6771c4eec173f64783247fd (patch) | |
| tree | 734ca15901987f997eb60c45cd46fa9e385d2c45 | |
| parent | 1306885968e31113595383225b148bacb6731e25 (diff) | |
| download | openwrt-b6bbc76c0b2a18b0a6771c4eec173f64783247fd.tar.gz | |
include/package-pack: set missing Description on .apk creation
Set missing description info on .apk creation. This was probably a TODO
that wasn't notice when the final implementation was pushed.
Fixes: d788ab376f85 ("build: add APK package build capabilities")
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | include/package-pack.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/package-pack.mk b/include/package-pack.mk index 26a3278834..a6ba9ca37c 100644 --- a/include/package-pack.mk +++ b/include/package-pack.mk @@ -339,7 +339,7 @@ else $(FAKEROOT) $(STAGING_DIR_HOST)/bin/apk mkpkg \ --info "name:$(1)$$(ABIV_$(1))" \ --info "version:$(VERSION)" \ - --info "description:" \ + --info "description: $$(strip $$(Package/$(1)/description))" \ --info "arch:$(PKGARCH)" \ --info "license:$(LICENSE)" \ --info "origin:$(SOURCE)" \ |