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:
Doug Zongker 2009-06-15 15:36:16 -07:00
parent cf348b97bd
commit 37c0e274d1
1 changed files with 2 additions and 3 deletions

View File

@ -477,11 +477,10 @@ $(kernel_notice_file): \
# before the rules that use that variable to build the image.
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: $(addsuffix .x509.pem,$(KEY_CERT_PAIR))
@echo "building otacerts.zip"
$(TARGET_OUT_ETC)/security/otacerts.zip: $(addsuffix .x509.pem,$(DEFAULT_KEY_CERT_PAIR))
$(hide) rm -f $@
$(hide) mkdir -p $(dir $@)
zip -qj $@ $<
$(hide) zip -qj $@ $<
.PHONY: otacerts
otacerts: $(TARGET_OUT_ETC)/security/otacerts.zip