Improved debugging information and uninstallation for some scripts

This commit is contained in:
Pierre Pronchery 2012-08-01 00:13:24 +00:00
parent 4b46d09576
commit d3c20b3529
3 changed files with 6 additions and 6 deletions

View File

@ -38,8 +38,8 @@ XSLTPROC="xsltproc --nonet --xinclude"
#debug
_debug()
{
echo $@
$@
echo "$@" 1>&2
"$@"
}

View File

@ -44,8 +44,8 @@ TOUCH="touch"
#debug
_debug()
{
echo $@ 1>&2
$@
echo "$@" 1>&2
"$@"
}

View File

@ -43,8 +43,8 @@ XGETTEXT="xgettext --force-po"
#debug
_debug()
{
echo $@
$@
echo "$@" 1>&2
"$@"
}