AppleII-LibA2

 view release on metacpan or  search on metacpan

inc/A2_Build.pm  view on Meta::CPAN

# Package Global Variables:

our $VERSION = '0.201'; # VERSION

#=====================================================================

sub find_perl_interpreter
{
  my $self = shift @_;

  my $perl = $self->SUPER::find_perl_interpreter(@_);

  # Convert /usr/bin/perl5.8.6 to /usr/bin/perl:
  #  (if the latter is a symlink to the former)
  my $base = $perl;
  if ($base =~ s/[\d.]+$// and -l $base and abs_path($base) eq $perl) {
    $perl = $base;
  }

  return $perl;
} # end find_perl_interpreter



( run in 0.322 second using v1.01-cache-2.11-cpan-a9ef4e587e4 )