| ExtUtils-MakeMaker documentation | Contained in the ExtUtils-MakeMaker distribution. |
ExtUtils::MakeMaker::Config - Wrapper around Config.pm
use ExtUtils::MakeMaker::Config;
print $Config{installbin}; # or whatever
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;