Change 31467 by [EMAIL PROTECTED] on 2007/06/26 07:22:36
Subject: [PATCH] Porting/corecpan.pl -f option doesn't work
From: "Jan Dubois" <[EMAIL PROTECTED]>
Date: Mon, 25 Jun 2007 16:55:01 -0700
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/Porting/corecpan.pl#3 edit
Differences ...
==== //depot/perl/Porting/corecpan.pl#3 (text) ====
Index: perl/Porting/corecpan.pl
--- perl/Porting/corecpan.pl#2~25345~ 2005-09-01 07:50:24.000000000 -0700
+++ perl/Porting/corecpan.pl 2007-06-26 00:22:36.000000000 -0700
@@ -32,7 +32,7 @@
getopts('fhv');
our $opt_h and usage;
-our $opt_f or !-f $packagefile and get_package_details;
+our $opt_f || !-f $packagefile and get_package_details;
# Load the package details. All of them.
my %cpanversions;
End of Patch.