Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the ExtUtils-Manifest CPAN distribution.

Report information
The Basics
Id: 45140
Status: resolved
Priority: 0/
Queue: ExtUtils-Manifest

People
Owner: Nobody in particular
Requestors: jettero [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 1.56
Fixed in: (no value)



Subject: !m/Skipped.*Quiet/
I wish ExtUtils::Manifest was on github. I mistakingly thought it was for a second, because there's an inc/ of it in makemaker (of which I'm a big fan, down with M::B and M::I). I found a silly little bug (probably) in EU::Manifest. (http://is.gd/tgUc [attached]) -- If riding in an airplane is flying, then riding in a boat is swimming. 107 jumps, 43.5 minutes of freefall, 83.4 freefall miles.
Subject: 0001-.patch
From 18d90d5fe7ed284088e00425b23d38ffc46026b8 Mon Sep 17 00:00:00 2001 From: jettero <jettero@cpan.org> Date: Sun, 19 Apr 2009 04:09:05 -0700 Subject: [PATCH] --- Manifest.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Manifest.pm b/Manifest.pm index 7281421..31b2973 100644 --- a/Manifest.pm +++ b/Manifest.pm @@ -268,7 +268,7 @@ sub skipcheck { my @skipped = (); foreach my $file (_sort keys %$found){ if (&$matches($file)){ - warn "Skipping $file\n"; + warn "Skipping $file\n" unless $Quiet; push @skipped, $file; next; } -- 1.6.2.1
Thanks very much - this has been applied. The sources are on github; see: http://github.com/rkobes/extutils-manifest/tree/master