From 43d85a86ba74f8c77654beb10f938f8bc4bda645 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Wed, 1 Aug 2012 00:13:24 +0000 Subject: [PATCH] Improved debugging information and uninstallation for some scripts --- doc/docbook.sh | 4 ++-- po/gettext.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/docbook.sh b/doc/docbook.sh index d2b30ec..0e8607a 100755 --- a/doc/docbook.sh +++ b/doc/docbook.sh @@ -38,8 +38,8 @@ XSLTPROC="xsltproc --nonet --xinclude" #debug _debug() { - echo $@ - $@ + echo "$@" 1>&2 + "$@" } diff --git a/po/gettext.sh b/po/gettext.sh index 8232897..9c07414 100755 --- a/po/gettext.sh +++ b/po/gettext.sh @@ -43,8 +43,8 @@ XGETTEXT="xgettext --force-po" #debug _debug() { - echo $@ - $@ + echo "$@" 1>&2 + "$@" }