summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Spooren2024-10-28 21:33:48 +0000
committerChristian Marangi2024-10-28 23:07:55 +0000
commit408eab55ee0abddd972e3fa7341869dff0794000 (patch)
tree9b656380219ba77837e0b2e95980f573d72b50c0
parent03e05253259cbdf5696d81f458dbfddb4530c758 (diff)
downloadopenwrt-408eab55ee0abddd972e3fa7341869dff0794000.tar.gz
package: fix key creation for SDK
Prior to this commit keys would only be generated if `make` is called alone, but not for something like `make package/busybox/compile`. The exact reasons are in the depth of make magic, so this is sheer luck! Signed-off-by: Paul Spooren <mail@aparcar.org>
-rw-r--r--package/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/Makefile b/package/Makefile
index 70897271ac..9ae94e9a4e 100644
--- a/package/Makefile
+++ b/package/Makefile
@@ -87,7 +87,7 @@ else
endif
else
ifneq ($(CONFIG_USE_APK),)
- $(curdir)/compile: $(BUILD_KEY_APK_SEC) $(BUILD_KEY_APK_PUB)
+ $(curdir)//compile += $(BUILD_KEY_APK_SEC) $(BUILD_KEY_APK_PUB)
endif
endif