From: Justin Erenkrantz Date: Fri, 3 May 2002 21:22:03 +0000 (+0000) Subject: Remove autom4te.cache when doing make distclean. X-Git-Tag: 2.0.37~518 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=62e5c1f4a18b92bbcec929aadc5778964d78ebf9;p=apache Remove autom4te.cache when doing make distclean. We can't specify it in DISTCLEAN_TARGETS because it is a directory. Perhaps we could modify DISTCLEAN_TARGETS to delete dirs too, but that's outside the scope of what Thom (or I) want to deal with now. Submitted by: Thom May Reviewed by: Justin Erenkrantz git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94922 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 24a921185a..0fb7b49631 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ Changes with Apache 2.0.37 + *) Remove autom4te.cache in 'make distclean'. + [Thom May ] + *) Fix generated httpd.conf to respect layout for LoadModule lines. PR 8170. [Thom May ] diff --git a/Makefile.in b/Makefile.in index 2b5f5c593e..7fa894c06e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -183,4 +183,7 @@ install-suexec: suexec: cd support && $(MAKE) suexec +x-local-distclean: + $(RM) -r autom4te.cache + include $(top_srcdir)/os/os2/core.mk