]> git.donarmstrong.com Git - debhelper.git/commitdiff
r546: * dh_builddeb(1): It's --filename, not --name. Closes: #160151
authorjoey <joey>
Mon, 9 Sep 2002 00:03:54 +0000 (00:03 +0000)
committerjoey <joey>
Mon, 9 Sep 2002 00:03:54 +0000 (00:03 +0000)
Debian/Debhelper/Dh_Lib.pm
debian/changelog
debian/control
dh_builddeb
dh_strip

index 7ebbe61b341efcf0dceaf61cbd2892db7e3b88c6..3bf7df185d3921b69f349cc0ac4b69f8493cb753 100644 (file)
@@ -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");
        }
 }
 
index 74d893bb3be6a31151070cf6381763ed2ee0c839..a98acf0184731628bfea3086d3abf5843169b3cb 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (4.1.7) unstable; urgency=low
+
+  * dh_builddeb(1): It's --filename, not --name. Closes: #160151
+
+ -- Joey Hess <joeyh@debian.org>  Sun,  8 Sep 2002 20:05:07 -0400
+
 debhelper (4.1.6) unstable; urgency=low
 
   * Clarified dh_perl man page. Closes: #159332
index 598ce83918206339e81a01f9b87c1c86ffa43844..b07c21161bf5b147b5788dd283118f2e48041752 100644 (file)
@@ -3,7 +3,7 @@ Section: devel
 Priority: optional
 Maintainer: Joey Hess <joeyh@debian.org>
 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
index 07029c076dbe22fc9696b40f9e8a62582a2df42d..04b40f84e9aabdfd99642e21457c317a33cc68bc 100755 (executable)
@@ -11,7 +11,7 @@ use Debian::Debhelper::Dh_Lib;
 
 =head1 SYNOPSIS
 
-B<dh_builddeb> [S<I<debhelper options>>] [B<--destdir=>I<directory>] [B<--name=>I<filename>] [S<B<--> I<params>>]
+B<dh_builddeb> [S<I<debhelper options>>] [B<--destdir=>I<directory>] [B<--filename=>I<name>] [S<B<--> I<params>>]
 
 =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<filename>
+=item B<--filename=>I<name>
 
 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!
index 31d51aff3527ffe39d5d2ae8375e925d6b1f5023..ac51cd5e8817380620d0a6f2e200582e8637e28f 100755 (executable)
--- a/dh_strip
+++ b/dh_strip
@@ -12,7 +12,7 @@ use Debian::Debhelper::Dh_Lib;
 
 =head1 SYNOPSIS
 
-B<dh_strip> [S<I<debhelper options>>] [B<-X>I<item>]
+B<dh_strip> [S<I<debhelper options>>] [B<-X>I<item>] [item]
 
 =head1 DESCRIPTION