usr
/
share
/
perl5
/
vendor_perl
/
ExtUtils
/
MakeMaker
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
Config.pm
593 bytes
Rename
Delete
FAQ.pod
19.62 KB
Rename
Delete
Tutorial.pod
5.30 KB
Rename
Delete
package ExtUtils::MakeMaker::Config; use strict; our $VERSION = '7.34'; $VERSION = eval $VERSION; 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; =head1 NAME ExtUtils::MakeMaker::Config - Wrapper around Config.pm =head1 SYNOPSIS use ExtUtils::MakeMaker::Config; print $Config{installbin}; # or whatever =head1 DESCRIPTION B<FOR INTERNAL USE ONLY> A very thin wrapper around Config.pm so MakeMaker is easier to test. =cut
Save