Skip to content

Commit

Permalink
Fix quoting in some installed shell scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
drepper committed Jun 28, 2011
1 parent 9113ea1 commit 5c0b8d9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,5 +1,9 @@
2011-06-28 Ulrich Drepper <drepper@gmail.com>

[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.
Expand Down
4 changes: 2 additions & 2 deletions 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.

Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion debug/xtrace.sh
Expand Up @@ -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
}

Expand Down
2 changes: 1 addition & 1 deletion malloc/memusage.sh
Expand Up @@ -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
}

Expand Down

0 comments on commit 5c0b8d9

Please sign in to comment.