27 lines
825 B
Text
27 lines
825 B
Text
--- Makefile.PL.orig Fri Oct 9 03:26:46 2015
|
|
+++ Makefile.PL Fri Oct 30 17:17:47 2015
|
|
@@ -25,13 +25,13 @@ while (my ($module, $min_ver) = each %required) {
|
|
eval "use $mod_ver;";
|
|
if($@) {
|
|
if (exists $required_hard{$module}) {
|
|
- $bomb_out = 1;
|
|
+# $bomb_out = 1;
|
|
print STDERR ("$mod_ver not found.\n");
|
|
} elsif ( exists $required_soft{$module} ) {
|
|
print STDERR ("$mod_ver not found. Some tests and/or "
|
|
."functionality may be missing.\n");
|
|
} else {
|
|
- $skip_tests = 1;
|
|
+# $skip_tests = 1;
|
|
print STDERR ("$mod_ver not found. You will not be able "
|
|
."to run the test suite.\n");
|
|
}
|
|
@@ -45,7 +45,7 @@ use lib '.';
|
|
sub yes
|
|
{
|
|
print ' (Y/n) ';
|
|
- return <STDIN> =~ /^(Y(e(s)?)?|A(YE|II+!*))?\n?$/i;
|
|
+ return 1;
|
|
}
|
|
|
|
sub yeah_no # it's an antipodean thing
|