From: Øyvind H. <go...@us...> - 2009-12-04 12:48:52
|
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 "Main OpenOCD repository". The branch, master has been updated via 146e841fc920e1caea702ef42e2088244b9b8464 (commit) from c65d94f7d0e0c511794ea1f42ddf01e66f97e236 (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 146e841fc920e1caea702ef42e2088244b9b8464 Author: Ãyvind Harboe <oyv...@zy...> Date: Fri Dec 4 09:50:55 2009 +0100 bootstrap: stop execution upon error When tools are not installed, exit immediately. This makes the error messages clearer. Signed-off-by: Ãyvind Harboe <oyv...@zy...> diff --git a/bootstrap b/bootstrap index 7684dc4..268d07c 100755 --- a/bootstrap +++ b/bootstrap @@ -1,6 +1,9 @@ #!/bin/sh -e # Run the autotools bootstrap sequence to create the configure script +# Stop execution as soon as we have an unknown command +set -e + if libtoolize --version >/dev/null 2>&1; then libtoolize="libtoolize" elif glibtoolize --version >/dev/null 2>&1; then ----------------------------------------------------------------------- Summary of changes: bootstrap | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) hooks/post-receive -- Main OpenOCD repository |