Skip to content

Commit 29c31d9

Browse files
committed
also only do that for macos (saves build time)
1 parent e281d26 commit 29c31d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SPC/builder/macos/MacOSBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ protected function buildEmbed(): void
267267
$vars = SystemUtil::makeEnvVarString($this->getMakeExtraVars());
268268
$concurrency = getenv('SPC_CONCURRENCY') ? '-j' . getenv('SPC_CONCURRENCY') : '';
269269
shell()->cd(SOURCE_PATH . '/php-src')
270-
->exec("make {$concurrency} INSTALL_ROOT=" . BUILD_ROOT_PATH . " {$vars} install");
270+
->exec("make {$concurrency} INSTALL_ROOT=" . BUILD_ROOT_PATH . " {$vars} install-sapi install-build install-headers install-programs");
271271

272272
if (getenv('SPC_CMD_VAR_PHP_EMBED_TYPE') === 'static') {
273273
$AR = getenv('AR') ?: 'ar';

0 commit comments

Comments
 (0)