diff options
author | joey <joey> | 1999-08-17 04:21:03 +0000 |
---|---|---|
committer | joey <joey> | 1999-08-17 04:21:03 +0000 |
commit | 7511571c6481101f17f9858357e62d133a8dcb1a (patch) | |
tree | 8d0f7bb4acf149bc2f85f7151877d4b73e1271ed /dh_builddeb | |
parent | 0495115e6ef5c603dfedae1a918690b078ffff9c (diff) | |
parent | ecff4e2941eefd33c368be7a0ee372406a6d0e94 (diff) | |
download | debhelper-7511571c6481101f17f9858357e62d133a8dcb1a.tar.gz |
r4: Initial Import
Diffstat (limited to 'dh_builddeb')
-rwxr-xr-x | dh_builddeb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/dh_builddeb b/dh_builddeb index a62e81ce..7bea3c06 100755 --- a/dh_builddeb +++ b/dh_builddeb @@ -1,7 +1,11 @@ #!/bin/sh -e # -# Build the .deb package, assuming all the files are set up in debian/tmp. +# Build the .deb package, assuming all the files are set up. PATH=debian:$PATH:/usr/lib/debhelper source dh_lib -doit "dpkg --build debian/tmp .." + +for PACKAGE in $DH_DOPACKAGES; do + TMP=`tmpdir $PACKAGE` + doit "dpkg --build debian/$TMP .." +done |