summaryrefslogtreecommitdiff
path: root/dh_installmanpages
diff options
context:
space:
mode:
authorjoey <joey>1999-08-17 05:01:39 +0000
committerjoey <joey>1999-08-17 05:01:39 +0000
commit6fb331ff4cd5565777961c3e150cd066db8e9333 (patch)
tree67b88ec6ec77154b6fa2c27af2e148294dd86647 /dh_installmanpages
parent8162f479ea8540086c6f0415abbadeb39ce823b8 (diff)
downloaddebhelper-6fb331ff4cd5565777961c3e150cd066db8e9333.tar.gz
r126: Initial Import
Diffstat (limited to 'dh_installmanpages')
-rwxr-xr-xdh_installmanpages4
1 files changed, 3 insertions, 1 deletions
diff --git a/dh_installmanpages b/dh_installmanpages
index 24772e5d..dbb73cf4 100755
--- a/dh_installmanpages
+++ b/dh_installmanpages
@@ -88,7 +88,9 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
# Skip all files listed on command line.
my $install=1;
foreach $skip (@ARGV) {
- if ($basename eq $skip) {
+ # Look at basename of what's on connect line
+ # for backwards compatability.
+ if ($basename eq Dh_Lib::basename($skip)) {
$install=undef;
last;
}