diff options
author | Jan Dubois <jand@activestate.com> | 2007-06-25 09:55:01 -0700 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-06-26 07:22:36 +0000 |
commit | c16639b530c8551bfbd92ceea654ab91dfea918a (patch) | |
tree | afccd7bebdd8273c27aa4ff107ed682416009531 /Porting | |
parent | 75b314b183a8794950600d4348567ccfcb7e9880 (diff) | |
download | perl-c16639b530c8551bfbd92ceea654ab91dfea918a.tar.gz |
Porting/corecpan.pl -f option doesn't work
From: "Jan Dubois" <jand@activestate.com>
Message-ID: <02a101c7b784$3f79c720$be6d5560$@com>
p4raw-id: //depot/perl@31467
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/corecpan.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/corecpan.pl b/Porting/corecpan.pl index 1327483f1d..0bf39132dd 100644 --- a/Porting/corecpan.pl +++ b/Porting/corecpan.pl @@ -32,7 +32,7 @@ sub get_package_details () { 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; |