From 41a4b661aafe7e9c95f78bbea467133879763f4c Mon Sep 17 00:00:00 2001 From: "andrea.esu" Date: Wed, 7 Aug 2024 15:27:04 +0200 Subject: [PATCH] quotation marks changes --- src/SPC/builder/linux/LinuxBuilder.php | 2 +- src/SPC/builder/windows/WindowsBuilder.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SPC/builder/linux/LinuxBuilder.php b/src/SPC/builder/linux/LinuxBuilder.php index 1ce382257..c44e3f9d8 100644 --- a/src/SPC/builder/linux/LinuxBuilder.php +++ b/src/SPC/builder/linux/LinuxBuilder.php @@ -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; diff --git a/src/SPC/builder/windows/WindowsBuilder.php b/src/SPC/builder/windows/WindowsBuilder.php index 3445d91e2..0148b41cd 100644 --- a/src/SPC/builder/windows/WindowsBuilder.php +++ b/src/SPC/builder/windows/WindowsBuilder.php @@ -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(