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-Tag: pre_ajp_proxy~2203 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=86b3519656af36d122881e2830806ee119c109a7;p=apache 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 91416ebb2c..bca9b6b151 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