You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2002/05/07 16:51:32 UTC

cvs commit: httpd-2.0 Makefile.in

trawick     02/05/07 07:51:32

  Modified:    .        Makefile.in
  Log:
  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
  
  Revision  Changes    Path
  1.110     +1 -1      httpd-2.0/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/Makefile.in,v
  retrieving revision 1.109
  retrieving revision 1.110
  diff -u -r1.109 -r1.110
  --- Makefile.in	3 May 2002 21:22:03 -0000	1.109
  +++ Makefile.in	7 May 2002 14:51:32 -0000	1.110
  @@ -184,6 +184,6 @@
   	cd support && $(MAKE) suexec
   
   x-local-distclean:
  -	$(RM) -r autom4te.cache
  +	@rm -rf autom4te.cache
   
   include $(top_srcdir)/os/os2/core.mk