In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/3f6115a774c1a91bdf4bf9bd8b0b410c510c7b95?hp=84e6cb0538bfdc99cedf4c01194e0f0d461a3845>

- Log -----------------------------------------------------------------
commit 3f6115a774c1a91bdf4bf9bd8b0b410c510c7b95
Author: Craig A. Berry <[email protected]>
Date:   Thu Oct 30 17:20:42 2014 -0500

    Special handling of Cwd and List::Util in configure.com.
    
    This is a follow-up to d689efaf4740b25, where the same thing was
    done to Configure.  They weren't getting into $Config{dynamic_ext}
    which caused DynaLoader.t to start failing once Test::More started
    requiring List::Util.
    
    I question the wisdom of expecting dynamic loading to be working
    flawlessly before we can test whether dynamic loading is working
    at all.
-----------------------------------------------------------------------

Summary of changes:
 configure.com | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/configure.com b/configure.com
index 6bd3082..be93b10 100644
--- a/configure.com
+++ b/configure.com
@@ -2825,7 +2825,10 @@ $   idx = idx + 1
 $   goto replace_dash_with_slash
 $
 $ end_replace_dash_with_slash:
-$   
+$!
+$ IF extspec .EQS. "Scalar/List/Utils" THEN extspec = "List/Util"
+$ IF extspec .EQS. "PathTools" THEN extspec = "Cwd"
+$!
 $ xxx = xs_extensions
 $ gosub may_already_have_extension
 $ IF $STATUS .EQ. 1

--
Perl5 Master Repository

Reply via email to