summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Dh_Lib.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-10-19 16:05:47 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-10-19 16:05:47 -0400
commitf2200dc38c6859c74dc261b310b0ad13ffbd6d33 (patch)
treec482a03097561dcc507969062add282bb734c2d8 /Debian/Debhelper/Dh_Lib.pm
parent6b23f94b61b04577c23646cebab5e3d4226e3f92 (diff)
consistently print whole failing command line
Diffstat (limited to 'Debian/Debhelper/Dh_Lib.pm')
-rw-r--r--Debian/Debhelper/Dh_Lib.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm
index 325c7fc3..2d1934be 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(" ", @_));
}
}