[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

lintian: r1137 - in trunk: debian frontend



Author: rra
Date: 2008-01-22 05:56:47 +0100 (Tue, 22 Jan 2008)
New Revision: 1137

Modified:
   trunk/debian/changelog
   trunk/frontend/lintian
Log:
  + [RA] Cope with a relative path to the lab.  Patch from H?\195?\165kon
    Stordahl.  (Closes: #461982)

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2008-01-22 04:53:00 UTC (rev 1136)
+++ trunk/debian/changelog	2008-01-22 04:56:47 UTC (rev 1137)
@@ -35,6 +35,8 @@
       patch by Chris Lamb.  (Closes: #459851)
     + [RA] Don't try to report overrides when not checking a package.
       Thanks, Håkon Stordahl.  (Closes: #461978)
+    + [RA] Cope with a relative path to the lab.  Patch from Håkon
+      Stordahl.  (Closes: #461982)
 
   * lib/Spelling.pm:
     + [RA] Add a spelling correction for PostgreSQL and lots of new

Modified: trunk/frontend/lintian
===================================================================
--- trunk/frontend/lintian	2008-01-22 04:53:00 UTC (rev 1136)
+++ trunk/frontend/lintian	2008-01-22 04:56:47 UTC (rev 1137)
@@ -1160,6 +1160,9 @@
 
     # determine base directory
     my $base = "$LINTIAN_LAB/$long_type/$pkg";
+    unless ($base =~ m,^/,) {
+	$base = "$cwd/$base";
+    }
     print "N: Base directory in lab: $base\n" if $debug;
 
     my $act_unpack_level = 0;


Reply to: