You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2011/01/17 11:44:33 UTC

svn commit: r1059857 - /httpd/httpd/trunk/buildconf

Author: rjung
Date: Mon Jan 17 10:44:33 2011
New Revision: 1059857

URL: http://svn.apache.org/viewvc?rev=1059857&view=rev
Log:
Change file touching order for util_expr to be in
sync with Makefile dependency.

The existing order lead to regeneration.

Modified:
    httpd/httpd/trunk/buildconf

Modified: httpd/httpd/trunk/buildconf
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/buildconf?rev=1059857&r1=1059856&r2=1059857&view=diff
==============================================================================
--- httpd/httpd/trunk/buildconf (original)
+++ httpd/httpd/trunk/buildconf Mon Jan 17 10:44:33 2011
@@ -230,11 +230,9 @@ fi
 # when running make
 echo fixing timestamps for ap_expr sources
 cd server
-touch util_expr_parse.y
+touch util_expr_parse.y util_expr_scan.l
 sleep 1
-touch util_expr_parse.c util_expr_parse.h util_expr_scan.l
-sleep 1
-touch util_expr_scan.c
+touch util_expr_parse.c util_expr_parse.h util_expr_scan.c
 cd ..
 
 exit 0