>Doesn't the Perl installer put stuff there itself?
 >
 >   # Where to put modules.
 >   privlib='/System/Library/Perl';
 >   sitelib='/Library/Perl';
 >   vendorlib='/Network/Library/Perl';
 >
 >IIRC, Perl will install the modules that it comes with in privlib.
 >Check the version number of ExtUtils::MakeMaker or something in
 >/System/Library/Perl to see which Perl it belongs to.

That's only if you use a prefix of /usr. Check your hints/
darwin.sh file, which I snippet in the article:

   # Default install; use non-system directories
   prefix='/usr/local'; # Built-in perl uses /usr
   siteprefix='/usr/local';
   vendorprefix='/usr/local';
   usevendorprefix='define';

   # Where to put modules.
   privlib='/Library/Perl'; # Built-in perl uses /System/Library/Perl
   sitelib='/Library/Perl';
   vendorlib='/Network/Library/Perl';

Or, with the /usr prefix:

   # I'm building/replacing the built-in perl
   siteprefix='/usr/local';
   vendorprefix='/usr/local';
   usevendorprefix='define';

   # Where to put modules.
   privlib='/System/Library/Perl';
   sitelib='/Library/Perl';
   vendorlib='/Network/Library/Perl';


-- 
Morbus Iff ( i'm the droid you're looking for )
Culture: http://www.disobey.com/ and http://www.gamegrene.com/
Please Me: http://www.amazon.com/exec/obidos/wishlist/25USVJDH68554
icq: 2927491 / aim: akaMorbus / yahoo: morbus_iff / jabber.org: morbus

Reply via email to