You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by je...@apache.org on 2003/01/28 19:50:02 UTC

cvs commit: httpd-2.0/server Makefile.in

jerenkrantz    2003/01/28 10:50:02

  Modified:    server   Makefile.in
  Log:
  Throw out export_files if exports.c is out-of-date as well.
  
  This should remove the requirement to run extraclean when we change a header
  file.
  
  Revision  Changes    Path
  1.83      +2 -2      httpd-2.0/server/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/Makefile.in,v
  retrieving revision 1.82
  retrieving revision 1.83
  diff -u -u -r1.82 -r1.83
  --- Makefile.in	18 Jan 2003 03:37:54 -0000	1.82
  +++ Makefile.in	28 Jan 2003 18:50:02 -0000	1.83
  @@ -38,8 +38,8 @@
   	    headers="`find $$files -newer exports.c`"; \
   	    if test -n "$$headers"; then \
   	        echo Found newer headers. Will rebuild exports.c.; \
  -	        echo rm -f exports.c; \
  -	        rm -f exports.c; \
  +	        echo rm -f exports.c exports_files; \
  +	        rm -f exports.c export_files; \
   	    fi; \
   	fi