From: Date: April 15 2008 11:32am Subject: bk commit into 5.0 tree (jperkin:1.2591) BUG#30954 List-Archive: http://lists.mysql.com/commits/45418 X-Bug: 30954 Message-Id: <20080415093255.837513C5711@chorlton.adsl.perkin.org.uk> Below is the list of changes that have just been committed into a local 5.0 repository of jperkin. When jperkin does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2008-04-15 10:32:50+01:00, jperkin@stripped +1 -0 bug#30954: small shell nit, fix exit code of --help|-h support-files/binary-configure.sh@stripped, 2008-04-15 10:32:46+01:00, jperkin@stripped +2 -1 Add closing ;; --- 'exit 0' after --help|-h diff -Nrup a/support-files/binary-configure.sh b/support-files/binary-configure.sh --- a/support-files/binary-configure.sh 2008-01-10 13:21:23 +00:00 +++ b/support-files/binary-configure.sh 2008-04-15 10:32:46 +01:00 @@ -13,12 +13,13 @@ for arg do case "$arg" in --help|-h) usage - exit 2 + exit 0 ;; *) echo "${SCRIPT_NAME}: unknown option $arg" usage exit 2 + ;; esac done