diff options
author | Nico Huber <nico.huber@secunet.com> | 2017-07-25 16:21:50 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2017-07-26 19:30:59 +0000 |
commit | c5362029e17f69d265178b7c6312a95e5d47a54b (patch) | |
tree | 5f123fdfc86f9ac34c9336f22118dcdd9d0f57cf /payloads/external/depthcharge | |
parent | 5ce0fe117626b10f327fe279f64856cde575946c (diff) | |
download | coreboot-c5362029e17f69d265178b7c6312a95e5d47a54b.tar.xz |
payloads/depthcharge: Fix clean target
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 <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/20769
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'payloads/external/depthcharge')
-rw-r--r-- | payloads/external/depthcharge/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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) |