diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2014-08-10 19:15:04 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2014-08-11 08:37:26 +0200 |
commit | 3108b1aa1bf0ce028f8fb469f1cd19c0a3b3b9cd (patch) | |
tree | 849a49f42531073286910fdba56fa1973a8b5bc8 | |
parent | 4ef309e85db0f44888650f98eead220ad147aa14 (diff) |
lint: always remove temporary files
In the error case, they survived.
Change-Id: I15167be12ff9ee03f1b3bb86b93f20cb5be02b10
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/6583
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
-rw-r--r-- | Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.inc b/Makefile.inc index 42ed707e8d..0a6b7bbe91 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -368,7 +368,7 @@ lint lint-stable: fi; \ echo ========; \ done; \ - test $$FAILED -eq 0 || { echo "ERROR: $$FAILED test(s) failed." && exit 1; }; \ + test $$FAILED -eq 0 || { echo "ERROR: $$FAILED test(s) failed."; rm -f $$LINTLOG && exit 1; }; \ rm -f $$LINTLOG gitconfig: |