Created
August 11, 2010 19:20
-
-
Save jjn1056/519564 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # building the dist for real | |
| my $ok = eval { | |
| my $wd = File::pushd::pushd($target); | |
| $builders[0]->build; | |
| my $extralibs = | |
| join $Config::Config{path_sep}, | |
| map { $abstarget->subdir('blib', $_) } qw{ arch lib }; | |
| local $ENV{PERL5LIB} = $extralibs .$Config::Config{path_sep}. $ENV{PERL5LIB}; | |
| system(@$cmd) and die "error while running: @$cmd"; | |
| 1; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment