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 808aed2 commit ac01867Copy full SHA for ac01867
src/StaticPHP/Package/PhpExtensionPackage.php
@@ -211,9 +211,9 @@ public function buildSharedForUnix(PackageBuilder $builder): void
211
{
212
$env = $this->getSharedExtensionEnv();
213
214
- $this->runStage('phpizeForUnix', ['env' => $env]);
215
- $this->runStage('configureForUnix', ['env' => $env]);
216
- $this->runStage('makeForUnix', ['env' => $env]);
+ $this->runStage([$this, 'phpizeForUnix'], ['env' => $env]);
+ $this->runStage([$this, 'configureForUnix'], ['env' => $env]);
+ $this->runStage([$this, 'makeForUnix'], ['env' => $env]);
217
218
// process *.so file
219
$soFile = BUILD_MODULES_PATH . '/' . $this->getExtensionName() . '.so';
0 commit comments