aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-07 20:07:39 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-07 20:07:39 +0000
commit13bd3c90dec3b92dfe2dc10d5155df71cb324ced (patch)
treed071a7c8b58221b7edf6f72c045a535f341dcbb7
parent337e189482b6044d5feb404716968b11b068f000 (diff)
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: http://svn.digium.com/svn/asterisk/branches/1.4@53464 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--main/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/Makefile b/main/Makefile
index ff8de6d4f..b8def5541 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