We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba8cc0a commit a59b342Copy full SHA for a59b342
src/tools/msvc/Mkvcbuild.pm
@@ -519,10 +519,10 @@ sub mkvcbuild
519
520
# Add defines from Perl's ccflags; see PGAC_CHECK_PERL_EMBED_CCFLAGS
521
my @perl_embed_ccflags;
522
- foreach my $f (split(" ",$Config{ccflags}))
+ foreach my $f (split(" ", $Config{ccflags}))
523
{
524
- if ($f =~ /^-D[^_]/ ||
525
- $f =~ /^-D_USE_32BIT_TIME_T/)
+ if ( $f =~ /^-D[^_]/
+ || $f =~ /^-D_USE_32BIT_TIME_T/)
526
527
$f =~ s/\-D//;
528
push(@perl_embed_ccflags, $f);
@@ -624,7 +624,8 @@ sub mkvcbuild
624
}
625
else
626
627
- die "could not identify perl library version";
+ die
628
+"could not identify perl library version matching pattern $perl_path\n";
629
630
631
# Add transform module dependent on plperl
0 commit comments