diff options
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | dh_installmanpages | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 4ec7e846..283a88e3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (1.1.19) unstable; urgency=low + + * dh_installmanpages: look at basename of man pacges specified on command + line to skip, for backwards compatability. + + -- Joey Hess <joeyh@master.debian.org> Thu, 10 Sep 1998 11:31:42 -0700 + debhelper (1.1.18) unstable; urgency=low * dh_installemacsen: substitute package name for #PACKAGE# when setting 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; } |