From 5c0b8d9013560bb24805844d31a7fb3959ee1e8d Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 28 Jun 2011 18:14:01 -0400 Subject: [PATCH] Fix quoting in some installed shell scripts --- ChangeLog | 4 ++++ NEWS | 4 ++-- debug/xtrace.sh | 2 +- malloc/memusage.sh | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 31fdf0d83de..b4d30ca33a4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2011-06-28 Ulrich Drepper + [BZ #12935] + * malloc/memusage.sh: Fix quoting in message. + * debug/xtrace.sh: Likewise. + * configure.in: Remove support for --experimental-malloc option, make it the default. * config.make.in: Likewise. diff --git a/NEWS b/NEWS index bc77d2dcf74..72e71767b0b 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -GNU C Library NEWS -- history of user-visible changes. 2011-6-24 +GNU C Library NEWS -- history of user-visible changes. 2011-6-28 Copyright (C) 1992-2009, 2010, 2011 Free Software Foundation, Inc. See the end for copying conditions. @@ -9,7 +9,7 @@ Version 2.15 * The following bugs are resolved with this release: - 12874, 12885, 12907 + 12874, 12885, 12907, 12935 * New program pldd to list loaded object of a process Implemented by Ulrich Drepper. 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 } -- 2.39.5