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