From 6f0310e8f7a8b609d748ce003e4e3b1ebb1a6ec9 Mon Sep 17 00:00:00 2001 From: DubbleClick Date: Wed, 27 Aug 2025 16:46:58 +0700 Subject: [PATCH] cs fix --- src/SPC/store/pkg/PkgConfig.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/SPC/store/pkg/PkgConfig.php b/src/SPC/store/pkg/PkgConfig.php index eb8690c3..6935a8fc 100644 --- a/src/SPC/store/pkg/PkgConfig.php +++ b/src/SPC/store/pkg/PkgConfig.php @@ -82,11 +82,11 @@ class PkgConfig extends CustomPackage ->appendEnv($env)->cd($srcdir); $shell->exec( "./configure --prefix='{$prefix}' " . - '--with-internal-glib '. - '--disable-host-tool '. - '--without-sysroot '. - '--without-system-include-path '. - '--without-system-library-path '. + '--with-internal-glib ' . + '--disable-host-tool ' . + '--without-sysroot ' . + '--without-system-include-path ' . + '--without-system-library-path ' . '--without-pc-path', ); $shell->exec('make -j' . (getenv('SPC_CONCURRENCY') ?: '1'));