1package ExtUtils::MakeMaker::Config;
2
3use strict;
4use warnings;
5
6our $VERSION = '7.62';
7$VERSION =~ tr/_//d;
8
9use Config ();
10
11# Give us an overridable config.
12our %Config = %Config::Config;
13
14sub import {
15    my $caller = caller;
16
17    no strict 'refs';   ## no critic
18    *{$caller.'::Config'} = \%Config;
19}
20
211;
22
23
24=head1 NAME
25
26ExtUtils::MakeMaker::Config - Wrapper around Config.pm
27
28
29=head1 SYNOPSIS
30
31  use ExtUtils::MakeMaker::Config;
32  print $Config{installbin};  # or whatever
33
34
35=head1 DESCRIPTION
36
37B<FOR INTERNAL USE ONLY>
38
39A very thin wrapper around Config.pm so MakeMaker is easier to test.
40
41=cut
42