The force install worked
however
the installed pm was
package File::Copy::Recursive;
use strict;
use warnings;
use Carp;
use File::Copy;
use File::Spec; #not really needed because File::Copy already gets it,
+ but for good measure :)
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(fcopy rcopy dircopy);
our $VERSION = '0.05';
sub VERSION { $VERSION; }
our $MaxDepth = 0;
our $KeepMode = 1;
..........
When called from my main perl script I got an error message to the effect that "there was no dircopy() subroutine.
When I changed the installed pm module to
package File::Copy::Recursive;
use strict;
use warnings;
use Carp;
use File::Copy;
use File::Spec;
require Exporter;
use vars qw(@ISA @EXPORT);
@ISA = qw(Exporter);
@EXPORT = qw(fcopy rcopy dircopy);
our $MaxDepth = 0;
our $KeepMode = 1;
............
It worked perfectly. For now I'm a happy camper (sort of); when I upgrade to 10.3.x I'll check this out.
BTW - Is upgrading Perl a big deal?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.