From 89a8e4df94d07ca360f97f57ff22ac8f7f7c3a5f Mon Sep 17 00:00:00 2001 From: joey Date: Mon, 9 Sep 2002 00:03:54 +0000 Subject: [PATCH] r546: * dh_builddeb(1): It's --filename, not --name. Closes: #160151 --- Debian/Debhelper/Dh_Lib.pm | 3 ++- debian/changelog | 6 ++++++ debian/control | 2 +- dh_builddeb | 4 ++-- dh_strip | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm index 7ebbe61..3bf7df1 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"); } } diff --git a/debian/changelog b/debian/changelog index 74d893b..a98acf0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (4.1.7) unstable; urgency=low + + * dh_builddeb(1): It's --filename, not --name. Closes: #160151 + + -- Joey Hess Sun, 8 Sep 2002 20:05:07 -0400 + debhelper (4.1.6) unstable; urgency=low * Clarified dh_perl man page. Closes: #159332 diff --git a/debian/control b/debian/control index 598ce83..b07c211 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: devel Priority: optional Maintainer: Joey Hess Build-Depends-Indep: perl (>= 5.6.1), fileutils (>= 4.0-2.1), file (>= 3.23-1), debconf-utils (>= 1.1.1), dpkg-dev (>= 1.9.0) -Standards-Version: 3.5.6.1 +Standards-Version: 3.5.7.0 Package: debhelper Architecture: all diff --git a/dh_builddeb b/dh_builddeb index 07029c0..04b40f8 100755 --- a/dh_builddeb +++ b/dh_builddeb @@ -11,7 +11,7 @@ use Debian::Debhelper::Dh_Lib; =head1 SYNOPSIS -B [S>] [B<--destdir=>I] [B<--name=>I] [S I>] +B [S>] [B<--destdir=>I] [B<--filename=>I] [S I>] =head1 DESCRIPTION @@ -27,7 +27,7 @@ packages. Use this if you want the generated .deb files to be put in a directory other than the default of ".." -=item B<--name=>I +=item B<--filename=>I Use this if you want to force the generated .deb file to have a particular file name. Does not work well if more than one .deb is generated! diff --git a/dh_strip b/dh_strip index 31d51af..ac51cd5 100755 --- a/dh_strip +++ b/dh_strip @@ -12,7 +12,7 @@ use Debian::Debhelper::Dh_Lib; =head1 SYNOPSIS -B [S>] [B<-X>I] +B [S>] [B<-X>I] [item] =head1 DESCRIPTION -- 2.39.2