From 86c6f2b96323980f75b4435809769ef2193dd157 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 5 May 2008 20:12:06 -0400 Subject: fix PERL5LIB in examples Using `pwd` makes some modules that call cpan recursively succeed to install --- doc/install.mdwn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/install.mdwn') diff --git a/doc/install.mdwn b/doc/install.mdwn index 052fc71dc..179428cb4 100644 --- a/doc/install.mdwn +++ b/doc/install.mdwn @@ -38,8 +38,8 @@ If you want to install by hand from the tarball, you should make sure that all the perl modules are installed. This is one way to install them, using CPAN: - PERL5LIB=. PERL_MM_USE_DEFAULT=1 perl -MCPAN -e 'CPAN::Shell->install("Bundle::IkiWiki")' - PERL5LIB=. PERL_MM_USE_DEFAULT=1 perl -MCPAN -e 'CPAN::Shell->install("Bundle::IkiWiki::Extras")' + PERL5LIB=`pwd` PERL_MM_USE_DEFAULT=1 perl -MCPAN -e 'CPAN::Shell->install("Bundle::IkiWiki")' + PERL5LIB=`pwd` PERL_MM_USE_DEFAULT=1 perl -MCPAN -e 'CPAN::Shell->install("Bundle::IkiWiki::Extras")' Then to build and install ikiwiki: -- cgit v1.2.3