From: Justin Erenkrantz Date: Tue, 28 Jan 2003 18:50:02 +0000 (+0000) Subject: Throw out export_files if exports.c is out-of-date as well. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09353b1b19507377466f2d6515c8ba04782d93b4;p=thirdparty%2Fapache%2Fhttpd.git 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. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98518 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/Makefile.in b/server/Makefile.in index 91416ebb2ca..bca9b6b1517 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -38,8 +38,8 @@ delete-exports: export_files 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