]> granicus.if.org Git - apache/commitdiff
* buildconf: Ensure that make never regenerates the mod_ssl expression
authorJoe Orton <jorton@apache.org>
Tue, 25 Nov 2003 15:21:46 +0000 (15:21 +0000)
committerJoe Orton <jorton@apache.org>
Tue, 25 Nov 2003 15:21:46 +0000 (15:21 +0000)
parser files from the lex/yacc sources.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101886 13f79535-47bb-0310-9956-ffa450edef68

buildconf

index 686f4058e3d2593bd915d19611cf785eed0c0b62..f3c797411753f0200d5259dfea5a0eedc6d1f29b 100755 (executable)
--- a/buildconf
+++ b/buildconf
@@ -202,4 +202,15 @@ if [ -f `which cut` ]; then
     > httpd.spec )
 fi
 
+# ensure that the mod_ssl expression parser sources are never regenerated
+# when running make
+echo fixing timestamps for mod_ssl sources
+cd modules/ssl
+touch ssl_expr_parse.y
+sleep 1
+touch ssl_expr_parse.c ssl_expr_parse.h ssl_expr_scan.l
+sleep 1
+touch ssl_expr_scan.c
+cd ../..
+
 exit 0