From: Jeff Trawick Date: Tue, 7 May 2002 14:51:32 +0000 (+0000) Subject: get "make extraclean" and probably "make distclean" to work on AIX X-Git-Tag: 2.0.37~464 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3c5aa4340934f1643f9378cd027ec16227b3b146;p=apache get "make extraclean" and probably "make distclean" to work on AIX again... $(RM) isn't defined everywhere (GNU make built-in?), so invoke rm the way we invoke it elsewhere in the makefile git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94996 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.in b/Makefile.in index 7fa894c06e..434d54cef8 100644 --- a/Makefile.in +++ b/Makefile.in @@ -184,6 +184,6 @@ suexec: cd support && $(MAKE) suexec x-local-distclean: - $(RM) -r autom4te.cache + @rm -rf autom4te.cache include $(top_srcdir)/os/os2/core.mk