diff options
author | Steve Hay <SteveHay@planit.com> | 2009-11-14 00:17:00 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2009-11-14 00:17:00 +0000 |
commit | 88a6f4fc380d30c405f82eb0f2962237fd771fea (patch) | |
tree | 36d1654c13cd4bbf8c0dcba747b9f348332b489e /win32/FindExt.pm | |
parent | 1725f55ba78fb58489ea39e2bc0cc1faffd32275 (diff) | |
download | perl-88a6f4fc380d30c405f82eb0f2962237fd771fea.tar.gz |
Revert core fixes for IO-Compress following IO-Compress update
With commit 1725f55ba78fb58489ea39e2bc0cc1faffd32275 IO-Compress now puts
its .pm files in lib rather than archlib for perls later than 5.11.1, so
the core can now do likewise given that blead will next be released as
5.11.2, i.e. revert the Configure part of 4cc80fc4cbbd82e20f7b14b68abb53d552076022
and revert f4a6a713802da1b781d7108503156fa3a0fe219e.
This change should not be merged into 5.10.x because IO-Compress will
continue to put its .pm files into archlib for the sake of anyone upgrading
a 5.10.x installation in-place.
Diffstat (limited to 'win32/FindExt.pm')
-rw-r--r-- | win32/FindExt.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/FindExt.pm b/win32/FindExt.pm index 4355a1769a..fe1febd839 100644 --- a/win32/FindExt.pm +++ b/win32/FindExt.pm @@ -91,7 +91,7 @@ sub find_ext # Temporary hack to cope with smokers that are not clearing directories: next if $ext{$this_ext}; - if (has_xs_or_c("$ext_dir$item") or $this_ext eq 'IO/Compress') { + if (has_xs_or_c("$ext_dir$item")) { $ext{$this_ext} = $static{$this_ext} ? 'static' : 'dynamic'; } else { $ext{$this_ext} = 'nonxs'; |