From: Russell Bryant Date: Wed, 7 Feb 2007 20:09:58 +0000 (+0000) Subject: Merged revisions 53464 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~3266 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ef5aba253e84219030cb099dd49c05ec5e0932e8;p=thirdparty%2Fasterisk.git Merged revisions 53464 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r53464 | russell | 2007-02-07 14:07:39 -0600 (Wed, 07 Feb 2007) | 4 lines 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/trunk@53465 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/Makefile b/main/Makefile index 3afdddfcd3..7d05ebfb09 100644 --- a/main/Makefile +++ b/main/Makefile @@ -142,6 +142,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