diff options
author | Craig A. Berry <craigberry@mac.com> | 2014-10-30 17:20:42 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2014-10-30 17:20:42 -0500 |
commit | 3f6115a774c1a91bdf4bf9bd8b0b410c510c7b95 (patch) | |
tree | 55c94d34ea1e821434af43d2f06d362b3f5dd884 /configure.com | |
parent | 84e6cb0538bfdc99cedf4c01194e0f0d461a3845 (diff) | |
download | perl-3f6115a774c1a91bdf4bf9bd8b0b410c510c7b95.tar.gz |
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.
Diffstat (limited to 'configure.com')
-rw-r--r-- | configure.com | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.com b/configure.com index 6bd3082503..be93b10de4 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 |