Add missing space

This commit is contained in:
crazywhalecc 2025-08-02 01:38:32 +08:00
parent 22a8191b97
commit af62e55da8
No known key found for this signature in database
GPG Key ID: 1F4BDD59391F2680
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ class LinuxBuilder extends UnixBuilderBase
} elseif ($opcache_jit) { } elseif ($opcache_jit) {
$opcache_jit = false; $opcache_jit = false;
} }
$opcache_jit_arg = $opcache_jit ? '--enable-opcache-jit' : '--disable-opcache-jit'; $opcache_jit_arg = $opcache_jit ? '--enable-opcache-jit ' : '--disable-opcache-jit ';
if ($this->getOption('enable-zts', false)) { if ($this->getOption('enable-zts', false)) {
$maxExecutionTimers = $phpVersionID >= 80100 ? '--enable-zend-max-execution-timers ' : ''; $maxExecutionTimers = $phpVersionID >= 80100 ? '--enable-zend-max-execution-timers ' : '';

View File

@ -107,7 +107,7 @@ class MacOSBuilder extends UnixBuilderBase
if ($opcache_jit && $phpVersionID < 80500 && !$this->getExt('opcache')) { if ($opcache_jit && $phpVersionID < 80500 && !$this->getExt('opcache')) {
$opcache_jit = false; $opcache_jit = false;
} }
$opcache_jit_arg = $opcache_jit ? '--enable-opcache-jit' : '--disable-opcache-jit'; $opcache_jit_arg = $opcache_jit ? '--enable-opcache-jit ' : '--disable-opcache-jit ';
$config_file_path = $this->getOption('with-config-file-path', false) ? $config_file_path = $this->getOption('with-config-file-path', false) ?
('--with-config-file-path=' . $this->getOption('with-config-file-path') . ' ') : ''; ('--with-config-file-path=' . $this->getOption('with-config-file-path') . ' ') : '';