summaryrefslogtreecommitdiff
path: root/lib/ExtUtils/MakeMaker/FAQ.pod
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2007-02-22 14:36:27 +0000
committerSteve Peters <steve@fisharerojo.org>2007-02-22 14:36:27 +0000
commit1e65eb70bcb514e61cdd8408bdbe4e5a20b7fd95 (patch)
tree153c99d24ca98170c65388cd916f2c88e9ff26f0 /lib/ExtUtils/MakeMaker/FAQ.pod
parent78ff2d7be71ff9f6811d8b05bb66c4c4707951ba (diff)
downloadperl-1e65eb70bcb514e61cdd8408bdbe4e5a20b7fd95.tar.gz
Upgrade to ExtUtils-MakeMaker-6.32. Included a version
bump to ExtUtils::MakeMaker to 6.32_01 because changes #29266, #29583, #29580, #29581 and #29583 were missing from the new release. p4raw-id: //depot/perl@30380
Diffstat (limited to 'lib/ExtUtils/MakeMaker/FAQ.pod')
-rw-r--r--lib/ExtUtils/MakeMaker/FAQ.pod6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/ExtUtils/MakeMaker/FAQ.pod b/lib/ExtUtils/MakeMaker/FAQ.pod
index 09583d03dc..16d9f29061 100644
--- a/lib/ExtUtils/MakeMaker/FAQ.pod
+++ b/lib/ExtUtils/MakeMaker/FAQ.pod
@@ -25,6 +25,7 @@ If you're not the Perl administrator you probably don't have
permission to install a module to its default location. Then you
should install it for your own use into your home directory like so:
+ # Non-unix folks, replace ~ with /path/to/your/home/dir
perl Makefile.PL INSTALL_BASE=~
This will put modules into F<~/lib/perl5>, man pages into F<~/man> and
@@ -36,6 +37,11 @@ each of your programs to look in that directory with the following:
use lib "$ENV{HOME}/lib/perl5";
+or if $ENV{HOME} isn't set and you don't want to set it for some
+reason, do it the long way.
+
+ use lib "/path/to/your/home/dir/lib/perl5";
+
=item How do I get MakeMaker and Module::Build to install to the same place?