summaryrefslogtreecommitdiff
path: root/dh
diff options
context:
space:
mode:
Diffstat (limited to 'dh')
-rwxr-xr-xdh5
1 files changed, 5 insertions, 0 deletions
diff --git a/dh b/dh
index c34a5a02..2a6c0a31 100755
--- a/dh
+++ b/dh
@@ -322,6 +322,11 @@ sub remove_command {
}
}
+sub add_command {
+ my $command=shift;
+ my $sequence=shift;
+ unshift @{$sequences{$sequence}}, $command;
+}
foreach my $addon (@{$dh{WITH}}) {
my $mod="Debian::Debhelper::Sequence::$addon";
$mod=~s/-/_/g;