This commit is contained in:
DubbleClick
2025-06-06 16:24:52 +07:00
parent 560f684f7f
commit 92ad792eff

View File

@@ -81,7 +81,7 @@ class LinuxBuilder extends UnixBuilderBase
foreach ($libSpecs as $libName => $arr) { foreach ($libSpecs as $libName => $arr) {
$lib = $this->getLib($libName); $lib = $this->getLib($libName);
if ($lib === null && str_starts_with($libName, 'lib')) { if ($lib === null && str_starts_with($libName, 'lib')) {
$lib = $this->getExt(substr($libName, 3)); $lib = $this->getLib(substr($libName, 3));
} }
$arr = $arr ?? []; $arr = $arr ?? [];