From: Kuan-Yi Li Date: Wed, 13 Nov 2024 16:29:21 +0000 (+0800) Subject: imagebuilder: fix APK keys dir creation X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F16942%2Fhead;p=thirdparty%2Fopenwrt.git imagebuilder: fix APK keys dir creation Make keys directory for APK instead of OPKG while adding local key. Signed-off-by: Kuan-Yi Li Link: https://github.com/openwrt/openwrt/pull/16942 Signed-off-by: Christian Marangi --- diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile index c92ab743066..56f761e966a 100644 --- a/target/imagebuilder/files/Makefile +++ b/target/imagebuilder/files/Makefile @@ -249,7 +249,7 @@ ifeq ($(CONFIG_USE_APK),) else $(if $(CONFIG_SIGNATURE_CHECK), \ $(if $(ADD_LOCAL_KEY), \ - mkdir -p $(TARGET_DIR)/etc/opkg/keys/; \ + mkdir -p $(TARGET_DIR)/etc/apk/keys/; \ cp $(BUILD_KEY_APK_PUB) $(TARGET_DIR)/etc/apk/keys/; \ ) \ )