summary refs log tree commit diff
path: root/debug/xtrace.sh
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@gmail.com>2011-05-28 09:49:05 -0400
committerUlrich Drepper <drepper@gmail.com>2011-05-28 09:49:05 -0400
commitde81b24662a219247b71d493a807c542edf4ec9f (patch)
tree3200dd6920fdffc5da04359415fb048b12f5cd45 /debug/xtrace.sh
parentc738465a4c13370f58b797a82cdf1c67e1121867 (diff)
downloadglibc-de81b24662a219247b71d493a807c542edf4ec9f.tar.gz
glibc-de81b24662a219247b71d493a807c542edf4ec9f.tar.xz
glibc-de81b24662a219247b71d493a807c542edf4ec9f.zip
Unify messages
Some shell scripts unnecessarily used different formats for some
messages.  Unify them to reduce the work of translators.
Diffstat (limited to 'debug/xtrace.sh')
-rwxr-xr-xdebug/xtrace.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug/xtrace.sh b/debug/xtrace.sh
index f2e9e22fee..5cb193ab5a 100755
--- a/debug/xtrace.sh
+++ b/debug/xtrace.sh
@@ -30,13 +30,13 @@ do_usage() {
 
 # Refer to --help option.
 help_info() {
-  printf >&2 $"Try \`xtrace --help' for more information.\n"
+  printf >&2 $"Try \`%s --help' or `%s --usage' for more information.\n" xtrace xtrace
   exit 1
 }
 
 # Message for missing argument.
 do_missing_arg() {
-  printf >&2 $"xtrace: option \`$1' requires an argument.\n"
+  printf >&2 $"%s: option '%s' requires an argument.\n" xtrace "$1"
   help_info
 }