From 1ade015fc0227fa5646eaf319cfe0952b8ad0e9b Mon Sep 17 00:00:00 2001 From: Victor Chong <victor.chong@linaro.org> Date: Fri, 8 Sep 2017 13:05:27 +0100 Subject: [PATCH] hikey_debian: Fix bug copying ta to deb package Commit 584efe5b ("examples: use optee_examples rep") missed this spot. Signed-off-by: Victor Chong <victor.chong@linaro.org> Reviewed-by: Joakim Bech <joakim.bech@linaro.org> --- hikey_debian.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hikey_debian.mk b/hikey_debian.mk index caa879e..5ef484c 100644 --- a/hikey_debian.mk +++ b/hikey_debian.mk @@ -376,7 +376,7 @@ deb: prepare xtest optee-examples optee-client @mkdir -p $(DEBPKG_LIB_PATH) && cd $(DEBPKG_LIB_PATH) && \ cp $(OPTEE_CLIENT_EXPORT)/lib/libtee* . @mkdir -p $(DEBPKG_TA_PATH) && cd $(DEBPKG_TA_PATH) && \ - cp $(HELLOWORLD_PATH)/ta/*.ta . && \ + cp $(OPTEE_EXAMPLES_PATH)/out/ta/*.ta . && \ find $(OPTEE_TEST_OUT_PATH)/ta -name "*.ta" -exec cp {} . \; @mkdir -p $(DEBPKG_CONTROL_PATH) @echo "$$CONTROL_TEXT" > $(DEBPKG_CONTROL_PATH)/control -- GitLab