When I saw:
Failed to opendir 'D:\STRAWB~1\perl\lib\CORE' to find header files: No
+ such file or directory at D:/Strawberry/perl/lib/ExtUtils/MM_Any.pm
+line 3049.
I should have asked you if the directory
D:\STRAWB~1\perl\lib\CORE (also known as
D:\strawberry\perl\lib\CORE) exists.
I assumed it existed because it
ought to exist, but maybe it has been removed.
Does that directory exist ?
If it does exist, then why does the opendir() call fail ?
Line 3049 of MM_Any.pm is:
opendir my $dh, $header_dir or die "Failed to opendir '$header_dir' to
+ find header files: $!";
Yet on my Strawberry Perl 5.30.0, it all works fine:
C:\>perl -le "opendir my $dh, 'C:\strawberry\perl\lib\CORE' or die $!;
+"
C:\>perl -le "opendir my $dh, 'C:\strawb~1\perl\lib\CORE' or die $!;"
C:\>perl -le "opendir my $dh, 'C:\STRAWB~1\perl\lib\CORE' or die $!;"
C:\>
Cheers,
Rob
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.