summaryrefslogtreecommitdiff
path: root/make_ext.pl
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2017-03-10 11:40:21 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2017-03-10 11:40:21 +0000
commitdd3e0aede631748ae44b03c249f710d87e9ab194 (patch)
tree52c66f3c3d5b55dc6438b1ebbe48b790d85be4bb /make_ext.pl
parentabc9e18b30d63f2f874b5a16fb9b1264fb23cc6d (diff)
downloadperl-dd3e0aede631748ae44b03c249f710d87e9ab194.tar.gz
Ensure that lib is built before IO-Compress
Diffstat (limited to 'make_ext.pl')
-rw-r--r--make_ext.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/make_ext.pl b/make_ext.pl
index c129a34039..80d8f68aa3 100644
--- a/make_ext.pl
+++ b/make_ext.pl
@@ -204,10 +204,11 @@ elsif (IS_VMS) {
{
# Cwd needs to be built before Encode recurses into subdirectories.
# Pod::Simple needs to be built before Pod::Functions
+ # lib needs to be built before IO-Compress
# This seems to be the simplest way to ensure this ordering:
my (@first, @other);
foreach (@extspec) {
- if ($_ eq 'Cwd' || $_ eq 'Pod/Simple') {
+ if ($_ eq 'Cwd' || $_ eq 'Pod/Simple' || $_ eq 'lib') {
push @first, $_;
} else {
push @other, $_;