This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade ExtUtils::CBuilder from version 0.280223 to 0.280224
[perl5.git] / dist / ExtUtils-CBuilder / lib / ExtUtils / CBuilder / Platform / Unix.pm
index b287694..d6c1768 100644 (file)
@@ -1,10 +1,10 @@
 package ExtUtils::CBuilder::Platform::Unix;
-
+$ExtUtils::CBuilder::Platform::Unix::VERSION = '0.280224';
+use warnings;
 use strict;
 use ExtUtils::CBuilder::Base;
 
-use vars qw($VERSION @ISA);
-$VERSION = '0.280214';
+use vars qw(@ISA);
 @ISA = qw(ExtUtils::CBuilder::Base);
 
 sub link_executable {
@@ -21,19 +21,19 @@ sub link_executable {
 sub link {
   my $self = shift;
   my $cf = $self->{config};
-  
+
   # Some platforms (notably Mac OS X 10.3, but some others too) expect
   # the syntax "FOO=BAR /bin/command arg arg" to work in %Config
   # (notably $Config{ld}).  It usually works in system(SCALAR), but we
   # use system(LIST). We fix it up here with 'env'.
-  
+
   local $cf->{ld} = $cf->{ld};
   if (ref $cf->{ld}) {
     unshift @{$cf->{ld}}, 'env' if $cf->{ld}[0] =~ /^\s*\w+=/;
   } else {
     $cf->{ld} =~ s/^(\s*\w+=)/env $1/;
   }
-  
+
   return $self->SUPER::link(@_);
 }