summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-04-23 23:03:56 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-04-23 23:03:56 -0400
commitdf8e92dd43785bc19569b2928bee90d892c91729 (patch)
treefc0539ee268d05d8006a912a724ea42a3ad2c1b6
parent4f8a46b36e961d1a64d466a63f3a7ef6c90bafe2 (diff)
bugfixes
-rwxr-xr-xdh15
1 files changed, 10 insertions, 5 deletions
diff --git a/dh b/dh
index 330b0152..6cf49f1a 100755
--- a/dh
+++ b/dh
@@ -150,20 +150,24 @@ instead run the commands by hand.
Another common case is wanting to run some code manually after a particular
debhelper command is run.
- binary-arch: install
- dh binary-arch --until dh_fixperms
+ install: build
+ dh install --until dh_fixperms
# dh_fixperms has run, now override it for one program
chmod 4755 debian/foo/usr/bin/foo
# and continue
- dh binary-arch --after dh_fixperms
+ dh install --after dh_fixperms
-It's also fine to run debhelper commands before starting the dh sequence.
+It's also fine to run debhelper commands before starting a dh sequence.
Just be sure to use the B<--remaining> option to ensure that commands
that normally come before those in the sequence are still run.
+ install:
+ dh_installdocs README TODO
+ dh_installchangelogs Changes
+ dh install --remaining
+
binary-arch: install
dh_strip -X foo
- dh_fixperms -X bar
dh binary-arch --remaining
=cut
@@ -231,6 +235,7 @@ $sequences{install} = [@{$sequences{build}}, qw{
dh_fixperms
}];
my @b=qw{
+ dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb