[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. v1.10
From: |
Ralf Wildenhues |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. v1.10.2-12-g3f7cfae |
Date: |
Sat, 13 Dec 2008 13:09:15 +0000 |
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=3f7cfae0100009618193000b3041e5d6b185c895
The branch, branch-1-10 has been updated
via 3f7cfae0100009618193000b3041e5d6b185c895 (commit)
from 18f43de8a2ffc8379e762deb90fac1b62a5eebc9 (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 3f7cfae0100009618193000b3041e5d6b185c895
Author: Ralf Wildenhues <address@hidden>
Date: Sat Dec 13 14:04:29 2008 +0100
Fix nonportable sed script in 'missing'.
* lib/missing: In sed script, do not use ';' after 't' commands.
Signed-off-by: Ralf Wildenhues <address@hidden>
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 5 +++++
lib/missing | 7 +++++--
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 3aeb741..1cdcc95 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-12-13 Ralf Wildenhues <address@hidden>
+
+ Fix nonportable sed script in 'missing'.
+ * lib/missing: In sed script, do not use ';' after 't' commands.
+
2008-12-07 Ralf Wildenhues <address@hidden>
PR automake/531:
diff --git a/lib/missing b/lib/missing
index 96374c4..d90004d 100755
--- a/lib/missing
+++ b/lib/missing
@@ -1,7 +1,7 @@
#! /bin/sh
# Common stub for a few missing GNU programs while installing.
-scriptversion=2008-11-24.07
+scriptversion=2008-12-13.14
# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006,
# 2008 Free Software Foundation, Inc.
@@ -110,7 +110,10 @@ Send bug reports to <address@hidden>."
esac
# normalize program name to check for.
-program=`echo "$1" | sed 's/^gnu-//; t; s/^gnu//; t; s/^g//; t'`
+program=`echo "$1" | sed '
+ s/^gnu-//; t
+ s/^gnu//; t
+ s/^g//; t'`
# Now exit if we have it, but it failed. Also exit now if we
# don't have it and --version was passed (most likely to detect
hooks/post-receive
--
GNU Automake
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. v1.10.2-12-g3f7cfae,
Ralf Wildenhues <=