]> git.donarmstrong.com Git - debhelper.git/commitdiff
consistently print whole failing command line
authorJoey Hess <joey@gnu.kitenet.net>
Mon, 19 Oct 2009 20:05:47 +0000 (16:05 -0400)
committerJoey Hess <joey@gnu.kitenet.net>
Mon, 19 Oct 2009 20:05:47 +0000 (16:05 -0400)
Debian/Debhelper/Dh_Lib.pm

index 325c7fc3823e895e2cd483cc8085d9cea00281a6..2d1934be4dc04b850496f029b85d0a47a20a59f2 100644 (file)
@@ -175,7 +175,7 @@ sub doit {
        verbose_print(escape_shell(@_));
 
        if (! $dh{NO_ACT}) {
-               system(@_) == 0 || _error_exitcode($_[0]);
+               system(@_) == 0 || _error_exitcode(join(" ", @_));
        }
 }