diff options
author | Joe Orton <jorton@apache.org> | 2003-11-25 16:21:46 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2003-11-25 16:21:46 +0100 |
commit | fafb5fe9593830be5c7938cbb1f208983c4b9a39 (patch) | |
tree | 85a408116994b81639a9d22312e8c8f38edf17bb /buildconf | |
parent | * modules/dav/main/mod_dav.c (dav_method_copymove): For a 401 on the (diff) | |
download | apache2-fafb5fe9593830be5c7938cbb1f208983c4b9a39.tar.xz apache2-fafb5fe9593830be5c7938cbb1f208983c4b9a39.zip |
* buildconf: Ensure that make never regenerates the mod_ssl expression
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
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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 |