Skip to content

Commit 1b4af80

Browse files
committed
Fix incorrect fix of PLPerl modules compilation
1 parent 11c8ba1 commit 1b4af80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/msvc/MSBuildProject.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ EOF
345345
$d =~ s/__CFGNAME__/$cfgname/g;
346346
print $f " <ModuleDefinitionFile>$d</ModuleDefinitionFile>\n";
347347
}
348-
if ($self->{name} eq 'plperl' and $self->{platform} eq 'Win32') {
348+
if ($self->{name} =~ /plperl/ and $self->{platform} eq 'Win32') {
349349
print $f " <ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>\n";
350350
}
351351
print $f <<EOF;

0 commit comments

Comments
 (0)