From: Jelte Jansen Date: Mon, 13 Mar 2006 12:57:52 +0000 (+0000) Subject: possible endless loop in make clean X-Git-Tag: release-1.1.0~296 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=735b20e9ae758e09a0eaf3bfb344f079ad85bb74;p=thirdparty%2Fldns.git possible endless loop in make clean --- diff --git a/Makefile.in b/Makefile.in index 39d942f2..c6c4e750 100644 --- a/Makefile.in +++ b/Makefile.in @@ -90,7 +90,7 @@ drill-realclean: drill-config ( cd drill ; $(MAKE) -f Makefile realclean) drill-clean: - ( cd drill ; if [ -f Makefile ] ; then $(MAKE) -f Makefile clean ; fi ;) + ( if [ -f drill/Makefile ] ; then cd drill ; $(MAKE) -f Makefile clean ; fi ;) drill-confclean: ( cd drill ; if [ -f Makefile ] ; then $(MAKE) -f Makefile confclean ; fi ;)