diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2010-06-29 12:18:50 +0100 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2010-06-29 12:18:50 +0100 |
commit | 6d3892ec7fcbd5f372c6ad13fee9659a77c752bc (patch) | |
tree | b71e2ea7b31714eff4a68a49f37fa42ed4805b8c /cpan/Module-Build/lib/Module/Build/Platform/cygwin.pm | |
parent | e12a81fadc3cc9fe9d6b2b9bf6d801ab30acce70 (diff) | |
download | perl-6d3892ec7fcbd5f372c6ad13fee9659a77c752bc.tar.gz |
Revert "Update Module-Build to CPAN version 0.3607"
This reverts commit 8f4d46e2e6b66d00df1e347dab564fd9799c8d94.
Way too much breakage for me to sanely resolve. Will leave it to
Dave Golden to try and integrate it
Signed-off-by: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Diffstat (limited to 'cpan/Module-Build/lib/Module/Build/Platform/cygwin.pm')
-rw-r--r-- | cpan/Module-Build/lib/Module/Build/Platform/cygwin.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpan/Module-Build/lib/Module/Build/Platform/cygwin.pm b/cpan/Module-Build/lib/Module/Build/Platform/cygwin.pm index 7d5573d59c..eb45b62f0e 100644 --- a/cpan/Module-Build/lib/Module/Build/Platform/cygwin.pm +++ b/cpan/Module-Build/lib/Module/Build/Platform/cygwin.pm @@ -2,7 +2,7 @@ package Module::Build::Platform::cygwin; use strict; use vars qw($VERSION); -$VERSION = '0.3607'; +$VERSION = '0.360301'; # patched in bleadperl $VERSION = eval $VERSION; use Module::Build::Platform::Unix; @@ -14,16 +14,16 @@ sub manpage_separator { } # Copied from ExtUtils::MM_Cygwin::maybe_command() -# If our path begins with F</cygdrive/> then we use C<ExtUtils::MM_Win32> +# If our path begins with F</cygdrive/> then we use M::B::Platform::Windows # to determine if it may be a command. Otherwise we use the tests -# from C<ExtUtils::MM_Unix>. +# from M::B::Platform::Unix. sub _maybe_command { my ($self, $file) = @_; if ($file =~ m{^/cygdrive/}i) { - require Module::Build::Platform::Win32; - return Module::Build::Platform::Win32->_maybe_command($file); + require Module::Build::Platform::Windows; + return Module::Build::Platform::Windows->_maybe_command($file); } return $self->SUPER::_maybe_command($file); |