diff options
author | joey <joey> | 2002-09-09 00:03:54 +0000 |
---|---|---|
committer | joey <joey> | 2002-09-09 00:03:54 +0000 |
commit | 89a8e4df94d07ca360f97f57ff22ac8f7f7c3a5f (patch) | |
tree | 757fc0470cf2b8e969f2ad4110d069adaad31bcd /Debian/Debhelper | |
parent | 719a85c8d9e5eb0cb4ad561aadab90c691ad00b2 (diff) | |
download | debhelper-89a8e4df94d07ca360f97f57ff22ac8f7f7c3a5f.tar.gz |
r546: * dh_builddeb(1): It's --filename, not --name. Closes: #160151
Diffstat (limited to 'Debian/Debhelper')
-rw-r--r-- | Debian/Debhelper/Dh_Lib.pm | 3 |
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"); } } |