Track /etc/gitconfig
[msysgit/mtrensch.git] / lib / perl5 / 5.8.8 / ExtUtils / MakeMaker / Config.pm
blob52ae800f7826eacc374984f3fe0ccf1139023690
1 package ExtUtils::MakeMaker::Config;
3 $VERSION = '0.02';
5 use strict;
6 use Config ();
8 # Give us an overridable config.
9 use vars qw(%Config);
10 %Config = %Config::Config;
12 sub import {
13 my $caller = caller;
15 no strict 'refs';
16 *{$caller.'::Config'} = \%Config;
22 =head1 NAME
24 ExtUtils::MakeMaker::Config - Wrapper around Config.pm
27 =head1 SYNOPSIS
29 use ExtUtils::MakeMaker::Config;
30 print $Config{installbin}; # or whatever
33 =head1 DESCRIPTION
35 B<FOR INTERNAL USE ONLY>
37 A very thin wrapper around Config.pm so MakeMaker is easier to test.
39 =cut