From: sven.panne@aedion.de Date: Sat, 15 Sep 2007 08:58:45 +0000 (+0000) Subject: Unbreak "clean" and "distclean" targets when there is no testsuite X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=855444fb5b955353a59e7062a3563f6a9324e676 Unbreak "clean" and "distclean" targets when there is no testsuite --- diff --git a/Makefile b/Makefile index 615151d..fcd1ad5 100644 --- a/Makefile +++ b/Makefile @@ -575,7 +575,7 @@ extraclean:: clean distclean :: $(MAKE) -C bindisttest $@ - test -d testsuite && $(MAKE) -C testsuite $@ + if test -d testsuite; then $(MAKE) -C testsuite $@; fi # -----------------------------------------------------------------------------