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 Automake".
http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=79b751c4aa20e9cc83cc0478d60a22530f74624a The branch, branch-1-10 has been updated via 79b751c4aa20e9cc83cc0478d60a22530f74624a (commit) from cff45d952c6b52b190161f8312737e8a3095e60d (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 79b751c4aa20e9cc83cc0478d60a22530f74624a Author: Akim Demaille <[EMAIL PROTECTED]> Date: Sun Nov 25 10:47:00 2007 +0100 * bootstrap: Fix typos on redirections. Signed-off-by: Akim Demaille <[EMAIL PROTECTED]> ----------------------------------------------------------------------- Summary of changes: ChangeLog | 4 ++++ bootstrap | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6e81a3c..09cb162 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2008-01-19 Akim Demaille <[EMAIL PROTECTED]> + * bootstrap: Fix typos on redirections. + +2008-01-19 Akim Demaille <[EMAIL PROTECTED]> + Skip comments and empty lines in dirlist in the tests. * defs.in (extra_includes): Skip comments and empty lines in dirlist. diff --git a/bootstrap b/bootstrap index 607d8f8..54f6740 100755 --- a/bootstrap +++ b/bootstrap @@ -48,7 +48,7 @@ if test -z "$PERL"; then fi if test -z "$PERL"; then - echo "Cannot find perl" 2>&1 + echo "Cannot find perl" >&2 exit 1 fi @@ -72,12 +72,12 @@ eval $apiver_cmd # Sanity checks if test -z "$VERSION"; then - echo "Cannot find VERSION" 2>&1 + echo "Cannot find VERSION" >&2 exit 1 fi if test -z "$APIVERSION"; then - echo "Cannot find VERSION" 2>&1 + echo "Cannot find VERSION" >&2 exit 1 fi @@ -108,7 +108,7 @@ dosubst () # Create temporary replacement for lib/Automake/Config.pm dosubst automake-$APIVERSION/Automake/Config.in \ - automake-$APIVERSION/Automake/Config.pm + automake-$APIVERSION/Automake/Config.pm # Create temporary replacement for aclocal dosubst aclocal.in aclocal.tmp hooks/post-receive -- GNU Automake
