summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorCliff Woolley <jwoolley@apache.org>2002-04-12 18:02:10 +0000
committerCliff Woolley <jwoolley@apache.org>2002-04-12 18:02:10 +0000
commitce2ce8abcd36977b51ea56d3c2f2b2d11825ac87 (patch)
tree6b279a7ae0de8dac38bf1eebafed6e878027caec /build
parent131658da3915699f62d53ab9c0cfcb38b9ae0024 (diff)
downloadhttpd-ce2ce8abcd36977b51ea56d3c2f2b2d11825ac87.tar.gz
* make sure the -alpha name is not _inside_ the gzip (I have to try this and
to see if it works that way though) * touch generated files to make sure we don't require the user to have the tools to rebuild them (eg, flex and yacc) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94624 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rwxr-xr-xbuild/httpd_roll_release22
1 files changed, 16 insertions, 6 deletions
diff --git a/build/httpd_roll_release b/build/httpd_roll_release
index 630fa436c0..f042c038b3 100755
--- a/build/httpd_roll_release
+++ b/build/httpd_roll_release
@@ -66,17 +66,27 @@ echo >> $LOG_NAME
echo "Making sure people can read the manual (expanding SSI's)" >> $LOG_NAME
( cd docs/manual ; chmod +x expand.pl ; ./expand.pl ; rm ./expand.pl ) >> $LOG_NAME
+# make sure generated files are newer than their sources
+echo "Making sure generated files are newer than their sources"
+echo >> $LOG_NAME
+echo "Making sure generated files are newer than their sources" >> $LOG_NAME
+touch modules/ssl/ssl_expr_parse.c
+touch modules/ssl/ssl_expr_parse.h
+touch modules/ssl/ssl_expr_scan.c
+
# Time to roll the tarball
echo "Rolling the tarballs"
cd $START_DIR
echo >> $LOG_NAME
echo "Rolling the tarball" >> $LOG_NAME
-tar cvf $WORKING_DIR-alpha.tar $WORKING_DIR >> $LOG_NAME
-cp -p $WORKING_DIR-alpha.tar x$WORKING_DIR-alpha.tar
-gzip -9 $WORKING_DIR-alpha.tar
-mv x$WORKING_DIR-alpha.tar $WORKING_DIR-alpha.tar
-compress $WORKING_DIR-alpha.tar
+tar cvf $WORKING_DIR.tar $WORKING_DIR >> $LOG_NAME
+cp -p $WORKING_DIR.tar x$WORKING_DIR.tar
+gzip -9 $WORKING_DIR.tar
+mv $WORKING_DIR.tar.gz $WORKING_DIR-alpha.tar.gz
+mv x$WORKING_DIR.tar $WORKING_DIR.tar
+compress $WORKING_DIR.tar
+mv $WORKING_DIR.tar.Z $WORKING_DIR-alpha.tar.Z
# Test the tarballs
echo "Testing the tarball"
@@ -108,4 +118,4 @@ pgp $WORKING_DIR-alpha.tar.gz.asc $WORKING_DIR-alpha.tar.gz >> $LOG_NAME
pgp $WORKING_DIR-alpha.tar.Z.asc $WORKING_DIR-alpha.tar.Z >> $LOG_NAME
echo "Don't forget to make the tarballs available by copying them to the"
-echo "/www/dev.apache.org/dist directory."
+echo "/www/httpd.apache.org/dev/dist directory."