Subject: | Makefile.PL compatibility-check is unfriendly |
See the attached diff; the "Are you sure you want to continue prompt
looks like it's asking for /y(es)?/i but it's missing the optional
quantifier so a simple "y" fails.
--
--kulp
Subject: | more_friendly.diff |
--- Makefile.PL 2008-08-05 23:37:46.000000000 -0500
+++ Makefile.PL.new 2008-08-06 16:49:23.787310000 -0500
@@ -15,7 +15,7 @@
Are you sure you want to continue? [y/N]
EOM
- if ($y_n !~ /^y(?:es)$/i) {
+ if ($y_n !~ /^y(?:es)?$/i) {
exit 0;
}
}