From: Russell Bryant Date: Wed, 7 Feb 2007 20:07:39 +0000 (+0000) Subject: The clean target actually needs to run "distclean" on editline. This is X-Git-Tag: 1.4.1~127 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2b39ea96f00dbba0f9476eeda2146a3d2200990e;p=thirdparty%2Fasterisk.git The clean target actually needs to run "distclean" on editline. This is because we need to make sure that its configure script gets executed again, because the CFLAGS we want to pass to editline may have changed. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@53464 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/Makefile b/main/Makefile index ff8de6d4fc..b8def5541f 100644 --- a/main/Makefile +++ b/main/Makefile @@ -141,6 +141,6 @@ asterisk: $(OBJS) editline/libedit.a db1-ast/libdb1.a $(AST_EMBED_LDSCRIPTS) clean:: rm -f asterisk rm -f db1-ast/.*.d - @if [ -f editline/Makefile ]; then $(MAKE) -C editline clean ; fi + @if [ -f editline/Makefile ]; then $(MAKE) -C editline distclean ; fi @$(MAKE) -C db1-ast clean @$(MAKE) -C stdtime clean