summaryrefslogtreecommitdiff
path: root/Debian
diff options
context:
space:
mode:
authorjoey <joey>2002-09-09 00:03:54 +0000
committerjoey <joey>2002-09-09 00:03:54 +0000
commit89a8e4df94d07ca360f97f57ff22ac8f7f7c3a5f (patch)
tree757fc0470cf2b8e969f2ad4110d069adaad31bcd /Debian
parent719a85c8d9e5eb0cb4ad561aadab90c691ad00b2 (diff)
r546: * dh_builddeb(1): It's --filename, not --name. Closes: #160151
Diffstat (limited to 'Debian')
-rw-r--r--Debian/Debhelper/Dh_Lib.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm
index 7ebbe61b..3bf7df18 100644
--- a/Debian/Debhelper/Dh_Lib.pm
+++ b/Debian/Debhelper/Dh_Lib.pm
@@ -139,7 +139,8 @@ sub doit {
verbose_print(escape_shell(@_));
if (! $dh{NO_ACT}) {
- system(@_) == 0 || error("command returned error code");
+ my $ret=system(@_);
+ $ret == 0 || error("command returned error code $ret");
}
}