diff options
author | Jess Robinson <castaway@desert-island.me.uk> | 2013-01-02 14:55:59 +0000 |
---|---|---|
committer | Brian Fraser <fraserbn@gmail.com> | 2014-01-22 13:08:19 -0300 |
commit | d59900f6973d69f06df96ac4dfdb57f2d0c875c4 (patch) | |
tree | 4e2030d9554327e8c9955de75f614a8e2078f173 /cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | |
parent | d708ee4b2cf817d9803f6f18f87d6ce91ca74ff4 (diff) | |
download | perl-d59900f6973d69f06df96ac4dfdb57f2d0c875c4.tar.gz |
Stop using Config{run} to check the version of (mini)perl we are running
Diffstat (limited to 'cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm')
-rw-r--r-- | cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm index 72d04fbb62..560f789ca6 100644 --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm @@ -1039,8 +1039,6 @@ WARNING print "Executing $abs\n" if ($trace >= 2); my $version_check = qq{$abs -le "require $ver; print qq{VER_OK}"}; - $version_check = "$Config{run} $version_check" - if defined $Config{run} and length $Config{run}; # To avoid using the unportable 2>&1 to suppress STDERR, # we close it before running the command. |