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 340a67a commit 85a83a3Copy full SHA for 85a83a3
src/tools/msvc/Mkvcbuild.pm
@@ -511,10 +511,10 @@ sub mkvcbuild
511
512
# Add defines from Perl's ccflags; see PGAC_CHECK_PERL_EMBED_CCFLAGS
513
my @perl_embed_ccflags;
514
- foreach my $f (split(" ",$Config{ccflags}))
+ foreach my $f (split(" ", $Config{ccflags}))
515
{
516
- if ($f =~ /^-D[^_]/ ||
517
- $f =~ /^-D_USE_32BIT_TIME_T/)
+ if ( $f =~ /^-D[^_]/
+ || $f =~ /^-D_USE_32BIT_TIME_T/)
518
519
$f =~ s/\-D//;
520
push(@perl_embed_ccflags, $f);
@@ -616,7 +616,8 @@ sub mkvcbuild
616
}
617
else
618
619
- die "could not identify perl library version";
+ die
620
+"could not identify perl library version matching pattern $perl_path\n";
621
622
623
# Add transform module dependent on plperl
0 commit comments