]> git.donarmstrong.com Git - debhelper.git/commitdiff
r567: * dh_builddeb: Reluctantly call dpkg-deb directly. dpkg cannot pass extra
authorjoey <joey>
Sun, 24 Nov 2002 16:17:52 +0000 (16:17 +0000)
committerjoey <joey>
Sun, 24 Nov 2002 16:17:52 +0000 (16:17 +0000)
     params to dpkg-deb. Closes: #170330

debian/changelog
debian/control
debian/rules
dh_builddeb

index e5e7b936729dc519ded7998ab1730ffca236c04a..54693a679cf754792759acd3abc4098bdce3143c 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (4.1.26) unstable; urgency=low
+
+  * dh_builddeb: Reluctantly call dpkg-deb directly. dpkg cannot pass extra
+    params to dpkg-deb. Closes: #170330
+
+ -- Joey Hess <joeyh@debian.org>  Sun, 24 Nov 2002 11:14:36 -0500
+
 debhelper (4.1.25) unstable; urgency=low
 
   * Added a dh_python command, by Josselin Mouette 
index 28c16b6cab0ed63429f4c55c379f7852cd1a19ee..a699d7282136acc8c5061391010c2b8396e7e28d 100644 (file)
@@ -3,7 +3,7 @@ Section: devel
 Priority: optional
 Maintainer: Joey Hess <joeyh@debian.org>
 Build-Depends-Indep: perl (>= 5.6.1), coreutils | fileutils (>= 4.0-2.1), file (>= 3.23-1), dpkg-dev (>= 1.9.0)
-Standards-Version: 3.5.7.1
+Standards-Version: 3.5.8.0
 
 Package: debhelper
 Architecture: all
index a3ff112ef9bb39d83b80b7649caf285bb552c8bd..ab30a3e5326c66b03f4198c2d6c92ed12e3e8df5 100755 (executable)
@@ -84,7 +84,7 @@ binary-indep: build
        ./dh_installdeb
        ./dh_gencontrol
        ./dh_md5sums
-       ./dh_builddeb -v
+       ./dh_builddeb
 
 # Update the debhelper web page. Not intended for use by anyone except the
 # author.
index 04b40f84e9aabdfd99642e21457c317a33cc68bc..54c4362fa8ae0cb9b8336b7a4d064ba31aec4ba3 100755 (executable)
@@ -15,7 +15,7 @@ B<dh_builddeb> [S<I<debhelper options>>] [B<--destdir=>I<directory>] [B<--filena
 
 =head1 DESCRIPTION
 
-dh_builddeb simply calls L<dpkg(8)> to build a debian package or
+dh_builddeb simply calls L<dpkg-deb(8)> to build a debian package or
 packages.
 
 =head1 OPTIONS
@@ -36,7 +36,7 @@ file name. Does not work well if more than one .deb is generated!
 
 =item B<--> I<params>
 
-Pass I<params> to L<dpkg(1)|dpkg> when it is used to build the
+Pass I<params> to L<dpkg-deb(1)> when it is used to build the
 package.
 
 =back
@@ -62,7 +62,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
        if (exists $ENV{DH_ALWAYS_EXCLUDE} && length $ENV{DH_ALWAYS_EXCLUDE}) {
                complex_doit("find $tmp -name $ENV{DH_ALWAYS_EXCLUDE} | xargs rm -rf");
        }
-       doit("dpkg","--build",$tmp,"$dh{DESTDIR}$dh{FILENAME}",@{$dh{U_PARAMS}});
+       doit("dpkg-deb", @{$dh{U_PARAMS}}, "--build", $tmp, $dh{DESTDIR}.$dh{FILENAME});
 }
 
 =head1 SEE ALSO