Limit the Perl version warning to 5.16, as 5.18 seems to work fine
This commit is contained in:
parent
91bc4d8157
commit
9cb6dc768f
@ -26,8 +26,8 @@ BEGIN {
|
||||
$have_threads = 0 if $Moo::VERSION == 1.003000;
|
||||
}
|
||||
|
||||
warn "Running Slic3r under Perl >= 5.16 is not supported nor recommended\n"
|
||||
if $^V >= v5.16;
|
||||
warn "Running Slic3r under Perl 5.16 is not supported nor recommended\n"
|
||||
if $^V == v5.16;
|
||||
|
||||
use FindBin;
|
||||
our $var = "$FindBin::Bin/var";
|
||||
|
Loading…
Reference in New Issue
Block a user