mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-14 13:02:39 -07:00
Explain user that he doesn't need to worry if a failed module was optional. One more fix for Windows, also
This commit is contained in:
12
Build.PL
12
Build.PL
@@ -98,7 +98,13 @@ EOF
|
||||
foreach my $module (sort keys %modules) {
|
||||
my $version = $modules{$module};
|
||||
my $res = system $cpanm, "$module~$version";
|
||||
$missing_prereqs = 1 if $res != 0 && exists $prereqs{$module};
|
||||
if ($res != 0) {
|
||||
if (exists $prereqs{$module}) {
|
||||
$missing_prereqs = 1;
|
||||
} else {
|
||||
printf "Don't worry, this module is optional.\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# temporarily require this dev version until this upstream bug
|
||||
@@ -109,9 +115,9 @@ EOF
|
||||
# with current perl binary
|
||||
if (-e './xs/Build') {
|
||||
if ($^O eq 'MSWin32') {
|
||||
system 'pushd', 'xs';
|
||||
system 'cd', 'xs';
|
||||
system 'Build', 'distclean';
|
||||
system 'popd';
|
||||
system 'cd', '..';
|
||||
} else {
|
||||
system './xs/Build', 'distclean';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user