From 0c7fc6418c524329d47034aa2f4bec4f288095e2 Mon Sep 17 00:00:00 2001 From: Tony Cook Date: Wed, 28 Oct 2015 14:11:12 +1100 Subject: [PATCH] fix the non-Win32 build breakage introduced in ce9582af On Unix, EU::MM was falling back to EU::MM::version::vpp, which was removed above. Make the real version.pm available instead. --- write_buildcustomize.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/write_buildcustomize.pl b/write_buildcustomize.pl index 76d92d1..8666a6b 100644 --- a/write_buildcustomize.pl +++ b/write_buildcustomize.pl @@ -38,6 +38,7 @@ my @toolchain = qw(cpan/AutoLoader/lib ext/File-Find/lib cpan/Text-Tabs/lib dist/constant/lib + cpan/version/lib ); # Text-ParseWords used only in ExtUtils::Liblist::Kid::_win32_ext() @@ -49,7 +50,6 @@ push @toolchain, qw( cpan/Getopt-Long/lib cpan/parent/lib cpan/ExtUtils-Constant/lib - cpan/version/lib ) if $^O eq 'MSWin32'; push @toolchain, 'ext/VMS-Filespec/lib' if $^O eq 'VMS'; -- 1.8.3.1