summaryrefslogtreecommitdiff
path: root/dist/ExtUtils-CBuilder
diff options
context:
space:
mode:
authorGeorge Greer <perl@greerga.m-l.org>2011-02-15 12:34:10 -0500
committerGeorge Greer <perl@greerga.m-l.org>2011-02-15 12:57:54 -0500
commitfc2292f72612e5bcc77ddb212e9b651c991def44 (patch)
tree1f8ff0adb79371fc2cdcff53a88b3daadc350d63 /dist/ExtUtils-CBuilder
parent453bfd442f7dd1d2a5e0d56afa5e6beef97333c1 (diff)
downloadperl-fc2292f72612e5bcc77ddb212e9b651c991def44.tar.gz
ExtUtils-CBuilder is causing some collateral smoke; fix variable name.
Since the variable was empty, the include of ::Platform::MSVC failed and it fell back to ::Base which tried to use "-o" as a parameter.
Diffstat (limited to 'dist/ExtUtils-CBuilder')
-rw-r--r--dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm b/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm
index ba0f768158..1a76d3a903 100644
--- a/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm
+++ b/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm
@@ -21,7 +21,7 @@ my $load = sub {
{
my @package = split /::/, __PACKAGE__;
- my $os_type = os_type();
+ my $ostype = os_type();
if (grep {-e File::Spec->catfile($_, @package, 'Platform', $^O) . '.pm'} @INC) {
$load->(__PACKAGE__ . "::Platform::$^O");