Skip to content

Commit

Permalink
quotation marks changes
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea.esu authored and andrea.esu committed Aug 7, 2024
1 parent 645ca58 commit 41a4b66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/SPC/builder/linux/LinuxBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public function buildPHP(int $build_target = BUILD_TARGET_NONE): void
$disable_jit = $this->getOption('disable-opcache-jit', false) ? '--disable-opcache-jit ' : '';

$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') . ' ' ) : '';

$enable_cli = ($build_target & BUILD_TARGET_CLI) === BUILD_TARGET_CLI;
$enable_fpm = ($build_target & BUILD_TARGET_FPM) === BUILD_TARGET_FPM;
Expand Down
2 changes: 1 addition & 1 deletion src/SPC/builder/windows/WindowsBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public function buildPHP(int $build_target = BUILD_TARGET_NONE): void
$micro_w32 = $this->getOption('enable-micro-win32') ? ' --enable-micro-win32=yes' : '';

$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') . ' ' ) : '';

cmd()->cd(SOURCE_PATH . '\php-src')
->exec(
Expand Down

0 comments on commit 41a4b66

Please sign in to comment.