build all static exts no matter if we're also building shared versions

This commit is contained in:
DubbleClick 2025-05-23 12:09:57 +07:00
parent 15dc672bcf
commit ed35b65390

View File

@ -128,7 +128,7 @@ abstract class BuilderBase
if ($including_shared) {
return $this->exts;
}
return array_filter($this->exts, fn ($ext) => !$ext->isBuildShared());
return array_filter($this->exts, fn ($ext) => $ext->isBuildStatic());
}
/**