From c5362029e17f69d265178b7c6312a95e5d47a54b Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Tue, 25 Jul 2017 16:21:50 +0200 Subject: payloads/depthcharge: Fix clean target MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This line has a weird history. It got a `|| exit 0` removed lately which obviously was there to fix the presence of the superfluous `test` at the beginning. Now, remove the `test` too to make the clean target always succeed again ;) Change-Id: I9e069cf5d9ac8416cf350161439aa60798ef7b6b Signed-off-by: Nico Huber Reviewed-on: https://review.coreboot.org/20769 Reviewed-by: Paul Menzel Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki --- payloads/external/depthcharge/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'payloads/external') diff --git a/payloads/external/depthcharge/Makefile b/payloads/external/depthcharge/Makefile index 1c8d345e5d..8115eb1f4c 100644 --- a/payloads/external/depthcharge/Makefile +++ b/payloads/external/depthcharge/Makefile @@ -89,7 +89,7 @@ build: config PATH="$(abspath ../../../build/util/cbfstool):$$PATH" clean: - test -d $(output_dir) && rm -rf $(output_dir) + rm -rf $(output_dir) distclean: rm -rf $(project_dir) -- cgit v1.2.3