summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorCliff Woolley <jwoolley@apache.org>2002-04-12 20:45:24 +0000
committerCliff Woolley <jwoolley@apache.org>2002-04-12 20:45:24 +0000
commit435bd239722fe5986110ea2dd715a15de42e70f8 (patch)
tree48b3e1a01f78f3f092b28f3e5df571268a228d96 /build
parent162a4d313de4d54754227bc18f8ba9c817a2a9df (diff)
downloadhttpd-435bd239722fe5986110ea2dd715a15de42e70f8.tar.gz
Back out most of the previous commit, because part of it was useless and
part of it was vetoed. Anybody know the sh-ism to compare timestamps on files? That's what we really need here. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94626 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rwxr-xr-xbuild/httpd_roll_release20
1 files changed, 5 insertions, 15 deletions
diff --git a/build/httpd_roll_release b/build/httpd_roll_release
index f042c038b3..96d9ff3920 100755
--- a/build/httpd_roll_release
+++ b/build/httpd_roll_release
@@ -66,27 +66,17 @@ 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.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
+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
# Test the tarballs
echo "Testing the tarball"