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>
This commit is contained in:
parent
5ce0fe1176
commit
c5362029e1
|
@ -89,7 +89,7 @@ build: config
|
||||||
PATH="$(abspath ../../../build/util/cbfstool):$$PATH"
|
PATH="$(abspath ../../../build/util/cbfstool):$$PATH"
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
test -d $(output_dir) && rm -rf $(output_dir)
|
rm -rf $(output_dir)
|
||||||
|
|
||||||
distclean:
|
distclean:
|
||||||
rm -rf $(project_dir)
|
rm -rf $(project_dir)
|
||||||
|
|
Loading…
Reference in New Issue