This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
ExtUtils::CBuilder - Fix link() on Windows, broken in version 0.280226
authorSteve Hay <steve.m.hay@googlemail.com>
Thu, 20 Jul 2017 12:37:26 +0000 (13:37 +0100)
committerSteve Hay <steve.m.hay@googlemail.com>
Thu, 20 Jul 2017 12:37:26 +0000 (13:37 +0100)
17 files changed:
dist/ExtUtils-CBuilder/Changes
dist/ExtUtils-CBuilder/Makefile.PL
dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm
dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Base.pm
dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Unix.pm
dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/VMS.pm
dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows.pm
dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm
dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm
dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm
dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/aix.pm
dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/android.pm
dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/cygwin.pm
dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/darwin.pm
dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/dec_osf.pm
dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/os2.pm
pod/perldelta.pod

index 0e68d31..4d4f025 100644 (file)
@@ -1,5 +1,11 @@
 Revision history for Perl extension ExtUtils::CBuilder.
 
+0.280228 - 2017-07-20
+
+  Fixed:
+
+  - Fix link() on Windows, broken in version 0.280226.
+
 0.280227 - 2017-07-19
 
   Fixed:
index 431f421..bc1ce75 100644 (file)
@@ -29,7 +29,7 @@ my %WriteMakefileArgs = (
   "TEST_REQUIRES" => {
     "Test::More" => "0.47"
   },
-  "VERSION" => "0.280227",
+  "VERSION" => "0.280228",
   "test" => {
     "TESTS" => "t/*.t"
   }
index 897b833..9b9c8ba 100644 (file)
@@ -1,5 +1,5 @@
 package ExtUtils::CBuilder;
-$ExtUtils::CBuilder::VERSION = '0.280227';
+$ExtUtils::CBuilder::VERSION = '0.280228';
 use File::Spec ();
 use File::Path ();
 use File::Basename ();
index c9aed17..2305b2a 100644 (file)
@@ -1,5 +1,5 @@
 package ExtUtils::CBuilder::Base;
-$ExtUtils::CBuilder::Base::VERSION = '0.280227';
+$ExtUtils::CBuilder::Base::VERSION = '0.280228';
 use strict;
 use warnings;
 use File::Spec;
index f7c589e..ba226a2 100644 (file)
@@ -1,5 +1,5 @@
 package ExtUtils::CBuilder::Platform::Unix;
-$ExtUtils::CBuilder::Platform::Unix::VERSION = '0.280227';
+$ExtUtils::CBuilder::Platform::Unix::VERSION = '0.280228';
 use warnings;
 use strict;
 use ExtUtils::CBuilder::Base;
index fb282c8..a3903c7 100644 (file)
@@ -1,5 +1,5 @@
 package ExtUtils::CBuilder::Platform::VMS;
-$ExtUtils::CBuilder::Platform::VMS::VERSION = '0.280227';
+$ExtUtils::CBuilder::Platform::VMS::VERSION = '0.280228';
 use warnings;
 use strict;
 use ExtUtils::CBuilder::Base;
index da9b21b..60e2b63 100644 (file)
@@ -1,5 +1,5 @@
 package ExtUtils::CBuilder::Platform::Windows;
-$ExtUtils::CBuilder::Platform::Windows::VERSION = '0.280227';
+$ExtUtils::CBuilder::Platform::Windows::VERSION = '0.280228';
 use strict;
 use warnings;
 
@@ -151,7 +151,7 @@ sub link {
   # if running in perl source tree, look for libs there, not installed
   my $lddlflags = $cf->{lddlflags};
   my $perl_src = $self->perl_src();
-  $lddlflags =~ s{\Q$cf->{archlibexp}\E[\\/]CORE}{$perl_src`/lib/CORE} if $perl_src;
+  $lddlflags =~ s{\Q$cf->{archlibexp}\E[\\/]CORE}{$perl_src/lib/CORE} if $perl_src;
 
   my %spec = (
     srcdir        => $to,
index 4bf77ff..2a13c06 100644 (file)
@@ -1,5 +1,5 @@
 package ExtUtils::CBuilder::Platform::Windows::BCC;
-$ExtUtils::CBuilder::Platform::Windows::BCC::VERSION = '0.280227';
+$ExtUtils::CBuilder::Platform::Windows::BCC::VERSION = '0.280228';
 use strict;
 use warnings;
 
index 8013351..4756bca 100644 (file)
@@ -1,5 +1,5 @@
 package ExtUtils::CBuilder::Platform::Windows::GCC;
-$ExtUtils::CBuilder::Platform::Windows::GCC::VERSION = '0.280227';
+$ExtUtils::CBuilder::Platform::Windows::GCC::VERSION = '0.280228';
 use warnings;
 use strict;
 
index fc4cab1..e71966e 100644 (file)
@@ -1,5 +1,5 @@
 package ExtUtils::CBuilder::Platform::Windows::MSVC;
-$ExtUtils::CBuilder::Platform::Windows::MSVC::VERSION = '0.280227';
+$ExtUtils::CBuilder::Platform::Windows::MSVC::VERSION = '0.280228';
 use warnings;
 use strict;
 
index 4fff231..15ed01a 100644 (file)
@@ -1,5 +1,5 @@
 package ExtUtils::CBuilder::Platform::aix;
-$ExtUtils::CBuilder::Platform::aix::VERSION = '0.280227';
+$ExtUtils::CBuilder::Platform::aix::VERSION = '0.280228';
 use warnings;
 use strict;
 use ExtUtils::CBuilder::Platform::Unix;
index 3ee8e96..a0a03fc 100644 (file)
@@ -1,5 +1,5 @@
 package ExtUtils::CBuilder::Platform::android;
-$ExtUtils::CBuilder::Platform::android::VERSION = '0.280227';
+$ExtUtils::CBuilder::Platform::android::VERSION = '0.280228';
 use warnings;
 use strict;
 use File::Spec;
index 72ea90a..d9c7d66 100644 (file)
@@ -1,5 +1,5 @@
 package ExtUtils::CBuilder::Platform::cygwin;
-$ExtUtils::CBuilder::Platform::cygwin::VERSION = '0.280227';
+$ExtUtils::CBuilder::Platform::cygwin::VERSION = '0.280228';
 use warnings;
 use strict;
 use File::Spec;
index 915ca63..99894ec 100644 (file)
@@ -1,5 +1,5 @@
 package ExtUtils::CBuilder::Platform::darwin;
-$ExtUtils::CBuilder::Platform::darwin::VERSION = '0.280227';
+$ExtUtils::CBuilder::Platform::darwin::VERSION = '0.280228';
 use warnings;
 use strict;
 use ExtUtils::CBuilder::Platform::Unix;
index f5d4f26..bb71334 100644 (file)
@@ -1,5 +1,5 @@
 package ExtUtils::CBuilder::Platform::dec_osf;
-$ExtUtils::CBuilder::Platform::dec_osf::VERSION = '0.280227';
+$ExtUtils::CBuilder::Platform::dec_osf::VERSION = '0.280228';
 use warnings;
 use strict;
 use ExtUtils::CBuilder::Platform::Unix;
index 19f8bdc..48ccdef 100644 (file)
@@ -1,5 +1,5 @@
 package ExtUtils::CBuilder::Platform::os2;
-$ExtUtils::CBuilder::Platform::os2::VERSION = '0.280227';
+$ExtUtils::CBuilder::Platform::os2::VERSION = '0.280228';
 use warnings;
 use strict;
 use ExtUtils::CBuilder::Platform::Unix;
index b4a1e46..43b35aa 100644 (file)
@@ -136,7 +136,7 @@ L<Cwd> has been upgraded from version 3.67 to 3.68.
 
 =item *
 
-L<ExtUtils::CBuilder> has been upgraded from version 0.280225 to 0.280227.
+L<ExtUtils::CBuilder> has been upgraded from version 0.280225 to 0.280228.
 
 =item *