Message ID | 20180419051728.25352-1-uwe@kleine-koenig.org (mailing list archive) |
---|---|
State | Mainlined, archived |
Headers | show |
On Thu, Apr 19, 2018 at 07:17:28AM +0200, Uwe Kleine-König wrote: > To prevent validation/tmp.o being still around after > > make check && make clean > > remove it as part of the latter command. > > Signed-off-by: Uwe Kleine-König <uwe@kleine-koenig.org> Acked-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com> -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/Makefile b/Makefile index a72802ff986a..faa6ea8d4551 100644 --- a/Makefile +++ b/Makefile @@ -242,4 +242,5 @@ clean-check: -o -name "*.c.error.expected" \ -o -name "*.c.error.got" \ -o -name "*.c.error.diff" \ + -o -name "*.o" \ \) -exec rm {} \;
To prevent validation/tmp.o being still around after make check && make clean remove it as part of the latter command. Signed-off-by: Uwe Kleine-König <uwe@kleine-koenig.org> --- Makefile | 1 + 1 file changed, 1 insertion(+)