NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Worked nicely (Score:1)
Followed the guide, and ran only into one snag - the FTP site with the mirrors list was not accessible behind the local firewall (timeouts and annoyances), which made the bootstrap end with a CPAN.pm install that wasn't configured completely.
A quick start of cpan(1) and an "o conf connect_to_internet_ok urllist" followed by a "install Bundle::CPAN" and I was up and running. Thanks! :)
Ooops (Score:1)
Fresh install of OSX last week. Totally forgot about local lib before update the sys perl.
No matter, this weekend will be a fresh install of snow leapard, so I get another shot.
Speaking of, I wonder what version of perl comes on 10.6.
Re: (Score:1)
Looks like it comes with 5.10.0:
http://michaelflux.com/snow-leopard-10a380-notes-of-interest [michaelflux.com]
Here's hoping it at least has the patch for the nasty stock 5.10.0 @_ assignment performance hit.
My local::lib talk (Score:1)
Great page, JJ! I gave a talk on local::lib to the Milton Keynes Perl mongers recently, and the slides are available at http://miltonkeynes.pm.org/talks/2009/07/oliver_gorwits_local_lib.pdf [pm.org]
Spread the local::lib love!
Just a few notes (Score:1)
* The -z option on tar is not standard. The more appropriate -- for cross-platform purposes -- command is
gzip -dc local-lib-1.004004.tar.gz | tar -xf -
* You should mention that you should only run make install if none of the steps fails. Perhaps phrasing the code as
perl Makefile.PL --bootstrap && make && make test && make install
* .bashrc is only one of the possible places for that code to go (for instance, it is .profile under ksh) and you need different code if you are using csh.
Re: (Score:1)