I'm trying to upgrade my version of Perl on Mac OSX 10.2 from the default 5.6.0 to the new 5.8.2. I was able to successfully install, and after fixing some environment problems, everything seemed to work fine, as "make test" was 99.76% successful. However, when I tried to run a program I was working on before the upgrade, I discovered that wasn't able to use any modules. It turns out that the values in @INC were messed up. Every mention of the word "Perl" in the paths was followed by a "/5.8.2"; for instance, instead of "/System/Library/Perl", it would be "/System/Library/Perl/5.8.2", which of course doesn't exist. I tried to change these values during Configure by changing the values in config.sh, i.e. change:

archlib='/System/Library/Perl/5.8.2/darwin'
to
archlib='/System/Library/Perl/darwin'

However, this causes compile problems during make for some reason. I can't make any sense of it. Has anyone else had similar problems?

Thanks for the help,

- Joe


In reply to Changing path values during Configure causes make problems during 5.8.2 install. by jryan

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.