Skip to content

Commit

Permalink
fvp, ts: fix clean targets
Browse files Browse the repository at this point in the history
Before cmake configuration is done, or after runnig ts specific
realclean targets the out/ts-build directory is not present. This
makes ts clean targets fail, which block the clean target chain.
Modify the ts clean targets to ignore errors and let the clean chain
fully execute.

Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
Signed-off-by: Gyorgy Szing <gyorgy.szing@arm.com>
  • Loading branch information
gyuri-szing authored and jforissier committed Sep 29, 2023
1 parent cad793f commit a72ab36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trusted-services.mk
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ ffa-$1-sp:

.PHONY: ffa-$1-sp-clean
ffa-$1-sp-clean:
$$(MAKE) -C $(TS_BUILD_PATH)/$1 clean
- $$(MAKE) -C $(TS_BUILD_PATH)/$1 clean

.PHONY: ffa-$1-sp-realclean
ffa-$1-sp-realclean:
Expand Down Expand Up @@ -179,7 +179,7 @@ endif

.PHONY: ffa-$1-clean
ffa-$1-clean:
$$(MAKE) -C $(TS_BUILD_PATH)/$1 clean
- $$(MAKE) -C $(TS_BUILD_PATH)/$1 clean

.PHONY: ffa-$1-realclean
ffa-$1-realclean:
Expand Down

0 comments on commit a72ab36

Please sign in to comment.