From: apeiron Date: Wed, 25 Feb 2009 05:16:07 +0000 (+0000) Subject: Add a doc patch from Torsten Raudssus that clarifies how X-Git-Tag: 1.006009~82 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8b1e8e69c0857daa5b37aa7372625412436e655c;p=p5sagit%2Flocal-lib.git Add a doc patch from Torsten Raudssus that clarifies how to specify a directory other than ~/perl5. git-svn-id: http://dev.catalyst.perl.org/repos/bast/local-lib/1.000/trunk@5644 bd8105ee-0ff8-0310-8827-fb3f25b6796d --- diff --git a/Changes b/Changes index 96214f5..8c0d7e8 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for local::lib +1.003002 2009-02-25 + - Add a doc patch from Torsten Raudssus that + clarifies how to specify a directory other than ~/perl5. + 1.003001 2009-01-14 - Properly bail if given fancy dashes obtained by copy-pasting from a UTF8-happy POD formatter. This will bail in both the Makefile.PL and diff --git a/lib/local/lib.pm b/lib/local/lib.pm index bdc2572..b4a3841 100644 --- a/lib/local/lib.pm +++ b/lib/local/lib.pm @@ -11,7 +11,7 @@ use File::Path (); use Carp (); use Config; -our $VERSION = '1.003001'; # 1.3.1 +our $VERSION = '1.003002'; # 1.3.2 sub import { my ($class, @args) = @_; @@ -361,8 +361,12 @@ To bootstrap if you don't have local::lib itself installed - /bin/csh % perl -I$HOME/perl5/lib/perl5 -Mlocal::lib >> ~/.cshrc -You can also pass --boostrap=~/foo to get a different location (adjust the -bashrc / cshrc line appropriately) +You can also pass --boostrap=~/foo to get a different location - + + $ perl Makefile.PL --bootstrap=~/foo + $ make test && make install + + $ echo 'eval $(perl -I$HOME/foo/lib/perl5 -Mlocal::lib=$HOME/foo)' >>~/.bashrc =head1 DESCRIPTION @@ -448,6 +452,9 @@ documentation additions, contributed by Christopher Nehren . '--self-contained' feature contributed by Mark Stosberg . +Doc patches for a custom local::lib patch contributed by Torsten Raudssus +. + =head1 LICENSE This library is free software under the same license as perl itself