fix building of otacerts.zip
Was using a variable which was only defined inside the rule, outside the rule. Change to use the correct variable.
This commit is contained in:
parent
cf348b97bd
commit
37c0e274d1
|
@ -477,11 +477,10 @@ $(kernel_notice_file): \
|
||||||
# before the rules that use that variable to build the image.
|
# before the rules that use that variable to build the image.
|
||||||
ALL_DEFAULT_INSTALLED_MODULES += $(TARGET_OUT_ETC)/security/otacerts.zip
|
ALL_DEFAULT_INSTALLED_MODULES += $(TARGET_OUT_ETC)/security/otacerts.zip
|
||||||
$(TARGET_OUT_ETC)/security/otacerts.zip: KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR)
|
$(TARGET_OUT_ETC)/security/otacerts.zip: KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR)
|
||||||
$(TARGET_OUT_ETC)/security/otacerts.zip: $(addsuffix .x509.pem,$(KEY_CERT_PAIR))
|
$(TARGET_OUT_ETC)/security/otacerts.zip: $(addsuffix .x509.pem,$(DEFAULT_KEY_CERT_PAIR))
|
||||||
@echo "building otacerts.zip"
|
|
||||||
$(hide) rm -f $@
|
$(hide) rm -f $@
|
||||||
$(hide) mkdir -p $(dir $@)
|
$(hide) mkdir -p $(dir $@)
|
||||||
zip -qj $@ $<
|
$(hide) zip -qj $@ $<
|
||||||
|
|
||||||
.PHONY: otacerts
|
.PHONY: otacerts
|
||||||
otacerts: $(TARGET_OUT_ETC)/security/otacerts.zip
|
otacerts: $(TARGET_OUT_ETC)/security/otacerts.zip
|
||||||
|
|
Loading…
Reference in New Issue