diff options
author | joey <joey> | 2000-11-06 00:23:51 +0000 |
---|---|---|
committer | joey <joey> | 2000-11-06 00:23:51 +0000 |
commit | 47587e5a2f0fe23af3da54bf8621643881f56bdc (patch) | |
tree | 806e39554d06e15ab60daf37a30f0b95a1450e55 | |
parent | e832acd1f52e8aa5e23aee08ad047704780b182a (diff) | |
download | debhelper-47587e5a2f0fe23af3da54bf8621643881f56bdc.tar.gz |
r381: * dh_builddeb: Ok, it is cosmetic, but it annoyed me.
-rw-r--r-- | debian/changelog | 6 | ||||
-rwxr-xr-x | dh_builddeb | 5 |
2 files changed, 10 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 57c65a44..6a4f994a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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. diff --git a/dh_builddeb b/dh_builddeb index 15f4e397..3d3725ac 100755 --- a/dh_builddeb +++ b/dh_builddeb @@ -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}}); } |