From: Eric Biggers <ebiggers@xxxxxxxxxx> If running 'make clean' (or do-all) before the repositories have been cloned, don't try to clean a nonexistent xfsprogs-dev directory. Signed-off-by: Eric Biggers <ebiggers@xxxxxxxxxx> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6be3752..ced32b2 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ clean: do \ if test -f $$i/Makefile ; then make -C $$i clean ; fi ; \ done - make -C xfsprogs-dev realclean + if test -d xfsprogs-dev; then make -C xfsprogs-dev realclean; fi rm -rf bld xfstests rm -f kvm-xfstests/util/zerofree $(SCRIPTS) -- 2.13.0.219.gdb65acc882-goog -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html