diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-01-30 11:41:13 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2012-02-18 13:16:52 +0100 |
commit | 1179df5f52411bc16f719e9134d4978bc0c05cd9 (patch) | |
tree | ce16274122e1ab276a29876b91ec1854ba023e99 /make_ext.pl | |
parent | 6f7c818601340cd36597dd56f5cfb30800501348 (diff) | |
download | perl-1179df5f52411bc16f719e9134d4978bc0c05cd9.tar.gz |
Ensure Pod::Simple is built before Pod::Functions.
This will allow Pod::Functions to use Pod::Simple as part of its build
process.
Diffstat (limited to 'make_ext.pl')
-rw-r--r-- | make_ext.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/make_ext.pl b/make_ext.pl index 6425e37ea4..d6561b12e5 100644 --- a/make_ext.pl +++ b/make_ext.pl @@ -211,10 +211,11 @@ elsif ($is_VMS) { { # Cwd needs to be built before Encode recurses into subdirectories. + # Pod::Simple needs to be built before Pod::Functions # This seems to be the simplest way to ensure this ordering: my (@first, @other); foreach (@extspec) { - if ($_ eq 'Cwd') { + if ($_ eq 'Cwd' || $_ eq 'Pod/Simple') { push @first, $_; } else { push @other, $_; |