ExtUtils::MakeMaker::Config - Wrapper around Config.pm


ExtUtils-MakeMaker documentation Contained in the ExtUtils-MakeMaker distribution.

Index


Code Index:

NAME

Top

ExtUtils::MakeMaker::Config - Wrapper around Config.pm

SYNOPSIS

Top

  use ExtUtils::MakeMaker::Config;
  print $Config{installbin};  # or whatever




DESCRIPTION

Top

FOR INTERNAL USE ONLY

A very thin wrapper around Config.pm so MakeMaker is easier to test.


ExtUtils-MakeMaker documentation Contained in the ExtUtils-MakeMaker distribution.

package ExtUtils::MakeMaker::Config;

use strict;

our $VERSION = '6.56';

use Config ();

# Give us an overridable config.
our %Config = %Config::Config;

sub import {
    my $caller = caller;

    no strict 'refs';   ## no critic
    *{$caller.'::Config'} = \%Config;
}

1;