mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] tf-a: Fix empty variable in clean
@ 2022-12-27 19:32 avazquez.dev
  2023-01-02 11:10 ` [ptxdist] [PATCH] tf-a: use ptx/image-install Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: avazquez.dev @ 2022-12-27 19:32 UTC (permalink / raw)
  To: ptxdist; +Cc: Alejandro Vazquez

From: Alejandro Vazquez <avazquez.dev@gmail.com>

Clean command do not remove generated files.
Used an empty variable to delete the files, replaced by the correct one.

Signed-off-by: Alejandro Vazquez <avazquez.dev@gmail.com>
---
 rules/tf-a.make | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rules/tf-a.make b/rules/tf-a.make
index ac1bff032..6dae97bb3 100644
--- a/rules/tf-a.make
+++ b/rules/tf-a.make
@@ -116,7 +116,7 @@ $(STATEDIR)/tf-a.targetinstall:
 
 $(STATEDIR)/tf-a.clean:
 	@$(call targetinfo)
-	@rm -vf $(addprefix $(IMAGEDIR)/, $(notdir $(TF_A_ARTIFACTS_SRC)))
+	@rm -vf $(addprefix $(IMAGEDIR)/, $(notdir $(TF_A_ARTIFACTS)))
 	@$(call clean_pkg, TF_A)
 
 # vim: syntax=make
-- 
2.34.1




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-01-02 11:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-27 19:32 [ptxdist] [PATCH] tf-a: Fix empty variable in clean avazquez.dev
2023-01-02 11:10 ` [ptxdist] [PATCH] tf-a: use ptx/image-install Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox