This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, release/2.14/master, updated. glibc-2.14-16-g3ad68d2


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 C Library master sources".

The branch, release/2.14/master has been updated
       via  3ad68d2c0b2346fcd77d53059c005f7af25f8fcd (commit)
      from  96147940d8ffb63efdf84a7f2608eec742df8c61 (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 -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=3ad68d2c0b2346fcd77d53059c005f7af25f8fcd

commit 3ad68d2c0b2346fcd77d53059c005f7af25f8fcd
Author: Ulrich Drepper <drepper@gmail.com>
Date:   Tue Jun 28 18:14:01 2011 -0400

    Fix quoting in some installed shell scripts
    (cherry picked from commit 5c0b8d9013560bb24805844d31a7fb3959ee1e8d)

diff --git a/ChangeLog b/ChangeLog
index b27323c..31d2047 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-06-28  Ulrich Drepper  <drepper@gmail.com>
+
+	[BZ #12935]
+	* malloc/memusage.sh: Fix quoting in message.
+	* debug/xtrace.sh: Likewise.
+
 2011-06-27  Andreas Schwab  <schwab@redhat.com>
 
 	* iconvdata/gb18030.c (BODY for TO_LOOP): Fix encoding of non-BMP
diff --git a/debug/xtrace.sh b/debug/xtrace.sh
index 5cb193a..acaf77a 100755
--- a/debug/xtrace.sh
+++ b/debug/xtrace.sh
@@ -30,7 +30,7 @@ do_usage() {
 
 # Refer to --help option.
 help_info() {
-  printf >&2 $"Try \`%s --help' or `%s --usage' for more information.\n" xtrace xtrace
+  printf >&2 $"Try \`%s --help' or \`%s --usage' for more information.\n" xtrace xtrace
   exit 1
 }
 
diff --git a/malloc/memusage.sh b/malloc/memusage.sh
index f1ccbb4..75d5f3b 100755
--- a/malloc/memusage.sh
+++ b/malloc/memusage.sh
@@ -24,7 +24,7 @@ TEXTDOMAIN=libc
 
 # Print usage message.
 do_usage() {
-  printf >&2 $"Try \`%s --help' or `%s --usage' for more information.\n" memusage memusage
+  printf >&2 $"Try \`%s --help' or \`%s --usage' for more information.\n" memusage memusage
   exit 1
 }
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog          |    6 ++++++
 debug/xtrace.sh    |    2 +-
 malloc/memusage.sh |    2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]