Преглед изворни кода

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 година
родитељ
комит
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