Skip to content

Commit 9c8b4d6

Browse files
committed
also install-modules of course...
1 parent 8923077 commit 9c8b4d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/SPC/builder/linux/LinuxBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ protected function buildEmbed(): void
288288
shell()->cd(SOURCE_PATH . '/php-src')
289289
->exec('sed -i "s|//lib|/lib|g" Makefile')
290290
->exec('sed -i "s|^EXTENSION_DIR = .*|EXTENSION_DIR = /' . basename(BUILD_MODULES_PATH) . '|" Makefile')
291-
->exec("make {$concurrency} INSTALL_ROOT=" . BUILD_ROOT_PATH . " {$vars} install-sapi install-build install-headers install-programs");
291+
->exec("make {$concurrency} INSTALL_ROOT=" . BUILD_ROOT_PATH . " {$vars} install-sapi install-modules install-build install-headers install-programs");
292292

293293
$ldflags = getenv('SPC_CMD_VAR_PHP_MAKE_EXTRA_LDFLAGS') ?: '';
294294
$libDir = BUILD_LIB_PATH;

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-sapi install-build install-headers install-programs");
270+
->exec("make {$concurrency} INSTALL_ROOT=" . BUILD_ROOT_PATH . " {$vars} install-sapi install-modules 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)