]> git.donarmstrong.com Git - debhelper.git/commitdiff
r381: * dh_builddeb: Ok, it is cosmetic, but it annoyed me.
authorjoey <joey>
Mon, 6 Nov 2000 00:23:51 +0000 (00:23 +0000)
committerjoey <joey>
Mon, 6 Nov 2000 00:23:51 +0000 (00:23 +0000)
debian/changelog
dh_builddeb

index 57c65a44d05d14049486c4a8bdd55e0f1571b507..6a4f994abdfae1cb723aaca96050cdc8fca762a5 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (2.1.19) unstable; urgency=low
+
+  * dh_builddeb: Ok, it is cosmetic, but it annoyed me.
+
+ -- Joey Hess <joeyh@debian.org>  Sun,  5 Nov 2000 16:20:46 -0800
+
 debhelper (2.1.18) unstable; urgency=low
 
   * dh_builddeb: added a --filename option to specify the output filename.
index 15f4e397e0610889acb5d5d48a6e7b8260c63c69..3d3725ac5a9045d0d46b56f866bff6e0d7435e50 100755 (executable)
@@ -13,8 +13,11 @@ if (! defined $dh{DESTDIR}) {
 if (! defined $dh{FILENAME}) {
        $dh{FILENAME}='';
 }
+else {
+       $dh{FILENAME}="/$dh{FILENAME}";
+}
 
 foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
        $TMP=tmpdir($PACKAGE);
-       doit("dpkg","--build",$TMP,"$dh{DESTDIR}/$dh{FILENAME}",@{$dh{U_PARAMS}});
+       doit("dpkg","--build",$TMP,"$dh{DESTDIR}$dh{FILENAME}",@{$dh{U_PARAMS}});
 }