From: Ulrich Drepper Date: Tue, 28 Jun 2011 22:14:01 +0000 (-0400) Subject: Fix quoting in some installed shell scripts X-Git-Tag: glibc-2.14.1~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ad68d2c0b2346fcd77d53059c005f7af25f8fcd;p=thirdparty%2Fglibc.git Fix quoting in some installed shell scripts (cherry picked from commit 5c0b8d9013560bb24805844d31a7fb3959ee1e8d) --- diff --git a/ChangeLog b/ChangeLog index b27323cdb70..31d2047edf0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-06-28 Ulrich Drepper + + [BZ #12935] + * malloc/memusage.sh: Fix quoting in message. + * debug/xtrace.sh: Likewise. + 2011-06-27 Andreas Schwab * iconvdata/gb18030.c (BODY for TO_LOOP): Fix encoding of non-BMP diff --git a/debug/xtrace.sh b/debug/xtrace.sh index 5cb193ab5aa..acaf77a06ed 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 f1ccbb4d199..75d5f3ba390 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 }