]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix quoting in some installed shell scripts
authorUlrich Drepper <drepper@gmail.com>
Tue, 28 Jun 2011 22:14:01 +0000 (18:14 -0400)
committerAndreas Schwab <schwab@redhat.com>
Thu, 30 Jun 2011 09:22:36 +0000 (11:22 +0200)
(cherry picked from commit 5c0b8d9013560bb24805844d31a7fb3959ee1e8d)

ChangeLog
debug/xtrace.sh
malloc/memusage.sh

index b27323cdb70a48e3ac6b39156c38066f33fc020b..31d2047edf08badadee06c9669dced3c424cbf47 100644 (file)
--- 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
index 5cb193ab5aa58834c6b3c1bd534126391ab2737d..acaf77a06ed63dc146017c7f2018571f6a5c903d 100755 (executable)
@@ -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
 }
 
index f1ccbb4d199a6f8a769a26b99e24dcc2906360a9..75d5f3ba39090e4d0fb8377d1ad67a8fbc631582 100755 (executable)
@@ -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
 }