summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS1
-rw-r--r--write_buildcustomize.pl4
2 files changed, 4 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index 9c09813dca..709a7fc77f 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -278,6 +278,7 @@ Dan Boorstein <dan_boo@bellsouth.net>
Dan Brook <dbrook@easyspace.com>
Dan Collins <dcollinsn@gmail.com>
Dan Dascalescu <bigbang7@gmail.com>
+Dan Dedrick <ddedrick@lexmark.com>
Dan Hale <danhale@us.ibm.com>
Dan Jacobson <jidanni@jidanni.org>
Dan Kogai <dankogai@dan.co.jp>
diff --git a/write_buildcustomize.pl b/write_buildcustomize.pl
index 8666a6bce2..e82f931bae 100644
--- a/write_buildcustomize.pl
+++ b/write_buildcustomize.pl
@@ -22,6 +22,8 @@ if ( @ARGV ) {
# needed to build the nonxs modules
# After which, all nonxs modules are in lib, which was always sufficient to
# allow miniperl to build everything else.
+# Getopt::Long is here because it's used by podlators, which is one of the
+# nonxs modules.
# Term::ReadLine is not here for building but for allowing the debugger to
# run under miniperl when nothing but miniperl will build :-(.
@@ -39,6 +41,7 @@ my @toolchain = qw(cpan/AutoLoader/lib
cpan/Text-Tabs/lib
dist/constant/lib
cpan/version/lib
+ cpan/Getopt-Long/lib
);
# Text-ParseWords used only in ExtUtils::Liblist::Kid::_win32_ext()
@@ -47,7 +50,6 @@ my @toolchain = qw(cpan/AutoLoader/lib
push @toolchain, qw(
cpan/Text-ParseWords/lib
dist/ExtUtils-ParseXS/lib
- cpan/Getopt-Long/lib
cpan/parent/lib
cpan/ExtUtils-Constant/lib
) if $^O eq 'MSWin32';