Skip to content

Commit 04bfac1

Browse files
committed
Merge branch 'master' into releases/v1
2 parents ccebdaf + a502434 commit 04bfac1

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "actions-setup-perl",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "",
55
"main": "lib/setup-perl.js",
66
"scripts": {

scripts/lib/Devel/PatchPerl/Plugin/MinGW.pm

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -959,11 +959,9 @@ sub _write_gnumakefile {
959959
$makefile =~ s/__PERL_MINOR_VERSION__/$v[0]$v[1]/g;
960960
$makefile =~ s/__PERL_VERSION__/$v[0]$v[1]$v[2]/g;
961961

962-
# disable optimize because the their builds fail.
962+
# disable optimize because the the builds fail with ExceptionCode.EXCEPTION_ACCESS_VIOLATION.
963963
# they maybe contain undefined behavior???
964-
if($version eq "5.10.0" || $version eq "5.12.5") {
965-
$makefile =~ s/-O2/-O0/g;
966-
}
964+
$makefile =~ s/-O2/-O0/g;
967965

968966
_write_or_die(File::Spec->catfile("win32", "GNUmakefile"), $makefile);
969967
}

0 commit comments

Comments
 (0)