We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a9b659 commit de18e88Copy full SHA for de18e88
Configure.pl
@@ -229,7 +229,7 @@
229
print "got: $_";
230
if (/(?:java|jdk) version "(\d+)(?:\.(\d+))?/) {
231
$jvm_found = 1;
232
- if ($1 > 1 || $1 == 1 && $2 >= 7) {
+ if ($1 > 1 || $1 == 1 && $2 >= 8) {
233
$jvm_ok = 1;
234
}
235
$got = $_;
@@ -243,7 +243,7 @@
243
244
elsif (!$jvm_ok) {
245
push @errors,
246
- "Need at least JVM 1.7 (got $got)";
+ "Need at least JVM 1.8 (got $got)";
247
248
249
sorry($options{'ignore-errors'}, @errors) if @errors;
0 commit comments