8000
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 674e2de commit 3c2d5d6Copy full SHA for 3c2d5d6
src/tools/msvc/Mkvcbuild.pm
@@ -557,16 +557,17 @@ sub mkvcbuild
557
}
558
559
$plperl->AddReference($postgres);
560
+ my $perl_path = $solution->{options}->{perl} . '\lib\CORE\perl*.lib';
561
my @perl_libs =
562
grep { /perl\d+.lib$/ }
- glob($solution->{options}->{perl} . '\lib\CORE\perl*.lib');
563
+ glob($perl_path);
564
if (@perl_libs == 1)
565
{
566
$plperl->AddLibrary($perl_libs[0]);
567
568
else
569
- die "could not identify perl library version";
570
+ die "could not identify perl library version matching pattern $perl_path\n";
571
572
573
# Add transform module dependent on plperl
0 commit comments