]> git.donarmstrong.com Git - debhelper.git/commitdiff
r126: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 05:01:39 +0000 (05:01 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 05:01:39 +0000 (05:01 +0000)
debian/changelog
dh_installmanpages

index 4ec7e846428d4869868e98e19743aedd8a89d9f5..283a88e39fa11dcacc1a054d0d8803245c1eca6a 100644 (file)
@@ -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
index 24772e5d92762911fa3ae6b186a1c8ac9418ab85..dbb73cf480230a12fe402cd0fbbb5f8715f9f5d5 100755 (executable)
@@ -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;
                        }