This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU Mailutils".
http://git.savannah.gnu.org/cgit/mailutils.git/commit/?id=183ada2bf59176462c97a5026407fc4273a2c251 The branch, master has been updated via 183ada2bf59176462c97a5026407fc4273a2c251 (commit) from e13501a191709a9495839db365ee25444ef4cd5e (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 183ada2bf59176462c97a5026407fc4273a2c251 Author: Sergey Poznyakoff <g...@gnu.org> Date: Wed Nov 11 16:33:17 2015 +0200 Minor fix * bootstrap.conf: Don't try to download anything if --help is given ----------------------------------------------------------------------- Summary of changes: bootstrap.conf | 49 ++++++++++++++++++++++++++++++------------------- 1 files changed, 30 insertions(+), 19 deletions(-) diff --git a/bootstrap.conf b/bootstrap.conf index 2105b20..e99e2d3 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -84,27 +84,38 @@ excluded_files=' m4/visibility.m4 ' -git submodule init || exit $? -git submodule update || exit $? +help= +for option +do + case $option in + --help) + help=1;; + esac +done -# Read local configuration file -if [ -r .bootstrap ]; then - echo "$0: Reading configuration file .bootstrap" - eval set -- "`sed 's/#.*$//;/^$/d' .bootstrap | tr '\n' ' '` $*" -fi +if [ -z "$help" ]; then + git submodule init || exit $? + git submodule update || exit $? -# Recreate missing maildir parts -for mbox in testsuite/maildir/* -do - test -d $mbox/new || mkdir $mbox/new - test -d $mbox/cur || mkdir $mbox/cur - test -d $mbox/tmp || mkdir $mbox/tmp -done + # Read local configuration file + if [ -r .bootstrap ]; then + echo "$0: Reading configuration file .bootstrap" + eval set -- "`sed 's/#.*$//;/^$/d' .bootstrap | tr '\n' ' '` $*" + fi -# Grab the latest radius.m4 -test -f m4/radius.m4 || - wget -P m4 http://git.savannah.gnu.org/cgit/radius.git/plain/scripts/radius.m4 + # Recreate missing maildir parts + for mbox in testsuite/maildir/* + do + test -d $mbox/new || mkdir $mbox/new + test -d $mbox/cur || mkdir $mbox/cur + test -d $mbox/tmp || mkdir $mbox/tmp + done -# Create included listings for texinfo docs. -#make -C doc/texinfo -f maint.mk + # Grab the latest radius.m4 + test -f m4/radius.m4 || + wget -P m4 http://git.savannah.gnu.org/cgit/radius.git/plain/scripts/radius.m4 + + # Create included listings for texinfo docs. + #make -C doc/texinfo -f maint.mk +fi hooks/post-receive -- GNU Mailutils _______________________________________________ Commit-mailutils mailing list Commit-mailutils@gnu.org https://lists.gnu.org/mailman/listinfo/commit-mailutils