diff options
author | joey <joey> | 2001-02-09 00:57:53 +0000 |
---|---|---|
committer | joey <joey> | 2001-02-09 00:57:53 +0000 |
commit | 053f6f8b4e7431d32511aef209188a084e8c7e79 (patch) | |
tree | 209a51c8c8fdbcce25c834198f1b3ef705dcb5b0 /dh_builddeb | |
parent | ae0346306694bb2c52193f6352755c223e6e8935 (diff) | |
download | debhelper-053f6f8b4e7431d32511aef209188a084e8c7e79.tar.gz |
r420: big monsta changes
Diffstat (limited to 'dh_builddeb')
-rwxr-xr-x | dh_builddeb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/dh_builddeb b/dh_builddeb index 3d3725ac..795d9a0a 100755 --- a/dh_builddeb +++ b/dh_builddeb @@ -2,6 +2,7 @@ # # Build the .deb package, assuming all the files are set up. +use strict; use Debian::Debhelper::Dh_Lib; init(); @@ -17,7 +18,7 @@ else { $dh{FILENAME}="/$dh{FILENAME}"; } -foreach $PACKAGE (@{$dh{DOPACKAGES}}) { - $TMP=tmpdir($PACKAGE); - doit("dpkg","--build",$TMP,"$dh{DESTDIR}$dh{FILENAME}",@{$dh{U_PARAMS}}); +foreach my $package (@{$dh{DOPACKAGES}}) { + my $tmp=tmpdir($package); + doit("dpkg","--build",$tmp,"$dh{DESTDIR}$dh{FILENAME}",@{$dh{U_PARAMS}}); } |