remove support for build_environment_vars_for's deactivate option
[p5sagit/local-lib.git] / eg / scripted_install.pl
index b62c865..58f51a4 100644 (file)
@@ -1,19 +1,19 @@
-#!/usr/bin/perl\r
-# contributed by hdp@cpan.org\r
-\r
-use strict;\r
-use warnings;\r
-use CPAN;\r
-use Cwd;\r
-use File::Spec;\r
-my $target = Cwd::abs_path($ENV{TARGET})\r
-  or die "set \$ENV{TARGET} to your desired local::lib dir\n";\r
-\r
-my $mod = CPAN::Shell->expand(Module => "local::lib");\r
-$mod->get;\r
-my $dir = CPAN::Shell->expand(Distribution => $mod->cpan_file)->dir;\r
-chdir($dir);\r
-my $make = $CPAN::Config->{make};\r
-system($^X, 'Makefile.PL',"--bootstrap=$target") && exit 1;\r
-system($make, 'test') && exit 1;\r
-system($make, 'install') && exit 1;\r
+#!/usr/bin/perl
+# contributed by hdp@cpan.org
+
+use strict;
+use warnings;
+use CPAN;
+use Cwd;
+use File::Spec;
+my $target = $ENV{TARGET} ? Cwd::abs_path($ENV{TARGET}) : undef;
+
+my $mod = CPAN::Shell->expand(Module => "local::lib");
+$mod->get;
+my $dir = CPAN::Shell->expand(Distribution => $mod->cpan_file)->dir;
+chdir($dir);
+my $make = $CPAN::Config->{make};
+my $bootstrap = $target ? "--bootstrap=$target" : "--bootstrap";
+system($^X, 'Makefile.PL', $bootstrap) && exit 1;
+system($make, 'test') && exit 1;
+system($make, 'install') && exit 1;