Просмотр исходного кода

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 <[email protected]>
Paul Spooren 1 год назад
Родитель
Сommit
408eab55ee
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      package/Makefile

+ 1 - 1
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