29 lines
886 B
Plaintext
29 lines
886 B
Plaintext
$OpenBSD: patch-Makefile_PL,v 1.1.1.1 2006/12/10 23:48:59 espie Exp $
|
|
--- Makefile.PL.orig Wed Mar 29 07:05:28 2006
|
|
+++ Makefile.PL Mon Dec 11 00:40:07 2006
|
|
@@ -25,13 +25,13 @@ while (my ($module, $min_ver) = each %re
|
|
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
|