exclude virtual %INC entries from trace output
Matt S Trout [Thu, 16 Apr 2015 14:10:42 +0000 (14:10 +0000)]
Changes
lib/App/FatPacker/Trace.pm

diff --git a/Changes b/Changes
index fd79812..e5de864 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 Revision history for App-FatPacker
 
+  - exclude virtual %INC entries from trace output
+
 0.010002 - 2014-08-16
   - correctly specify perl prerequisite of 5.8 in meta files
 
index d58800e..277cf84 100644 (file)
@@ -30,6 +30,7 @@ CHECK {
 
   for my $inc (keys %INC) {
     next if exists $initial_inc{$inc};
+    next unless $INC{$inc} =~ /\Q${inc}\E\Z/;
     print $trace "$inc\n";
   }
 }