Skip to content

Commit

Permalink
[Review] ta: also build GP TAs when GP_PACKAGE is set
Browse files Browse the repository at this point in the history
Use $(MAKE) not $$(MAKE), deferred evaluation is not needed.

Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
  • Loading branch information
jforissier committed Apr 18, 2024
1 parent 1731cec commit 790d460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ta/Makefile.gmake
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ ifneq (,$(GP_PACKAGE))
define add-gp-ta-target
.PHONY: gp-ta-$(1)
gp-ta-$(1):
$$(MAKE) -C $(1)
$(MAKE) -C $(1)

ta: gp-ta-$(1)

Expand Down

0 comments on commit 790d460

Please sign in to comment.