Skip to content

Commit af62e55

Browse files
committed
Add missing space
1 parent 22a8191 commit af62e55

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
@@ -75,7 +75,7 @@ public function buildPHP(int $build_target = BUILD_TARGET_NONE): void
7575
} elseif ($opcache_jit) {
7676
$opcache_jit = false;
7777
}
78-
$opcache_jit_arg = $opcache_jit ? '--enable-opcache-jit' : '--disable-opcache-jit';
78+
$opcache_jit_arg = $opcache_jit ? '--enable-opcache-jit ' : '--disable-opcache-jit ';
7979

8080
if ($this->getOption('enable-zts', false)) {
8181
$maxExecutionTimers = $phpVersionID >= 80100 ? '--enable-zend-max-execution-timers ' : '';

src/SPC/builder/macos/MacOSBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public function buildPHP(int $build_target = BUILD_TARGET_NONE): void
107107
if ($opcache_jit && $phpVersionID < 80500 && !$this->getExt('opcache')) {
108108
$opcache_jit = false;
109109
}
110-
$opcache_jit_arg = $opcache_jit ? '--enable-opcache-jit' : '--disable-opcache-jit';
110+
$opcache_jit_arg = $opcache_jit ? '--enable-opcache-jit ' : '--disable-opcache-jit ';
111111

112112
$config_file_path = $this->getOption('with-config-file-path', false) ?
113113
('--with-config-file-path=' . $this->getOption('with-config-file-path') . ' ') : '';

0 commit comments

Comments
 (0)