From: Joey Hess Date: Mon, 19 Oct 2009 20:05:47 +0000 (-0400) Subject: consistently print whole failing command line X-Git-Tag: 7.4.4~34^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;ds=sidebyside;h=f2200dc38c6859c74dc261b310b0ad13ffbd6d33;p=debhelper.git consistently print whole failing command line --- diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm index 325c7fc..2d1934b 100644 --- a/Debian/Debhelper/Dh_Lib.pm +++ b/Debian/Debhelper/Dh_Lib.pm @@ -175,7 +175,7 @@ sub doit { verbose_print(escape_shell(@_)); if (! $dh{NO_ACT}) { - system(@_) == 0 || _error_exitcode($_[0]); + system(@_) == 0 || _error_exitcode(join(" ", @_)); } }