Skip to content

Commit

Permalink
Make 'perl Build.PL' work outside of the Parrot source tree
Browse files Browse the repository at this point in the history
  • Loading branch information
leto committed Mar 17, 2011
1 parent 362ee8f commit 0e28feb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Build.PL
Expand Up @@ -64,7 +64,7 @@ $builder->create_build_script();
sub in_parrot_tree
{
my $cwd = cwd();
return $cwd =~ /\bext\b.Parrot/;
return $cwd =~ /\bext\b.Parrot/ ? 1 : 0;
}

sub get_dl_env_var
Expand Down

0 comments on commit 0e28feb

Please sign in to comment.