This commit is contained in:
DubbleClick
2025-08-27 16:46:58 +07:00
parent c7141003db
commit 6f0310e8f7

View File

@@ -82,11 +82,11 @@ class PkgConfig extends CustomPackage
->appendEnv($env)->cd($srcdir); ->appendEnv($env)->cd($srcdir);
$shell->exec( $shell->exec(
"./configure --prefix='{$prefix}' " . "./configure --prefix='{$prefix}' " .
'--with-internal-glib '. '--with-internal-glib ' .
'--disable-host-tool '. '--disable-host-tool ' .
'--without-sysroot '. '--without-sysroot ' .
'--without-system-include-path '. '--without-system-include-path ' .
'--without-system-library-path '. '--without-system-library-path ' .
'--without-pc-path', '--without-pc-path',
); );
$shell->exec('make -j' . (getenv('SPC_CONCURRENCY') ?: '1')); $shell->exec('make -j' . (getenv('SPC_CONCURRENCY') ?: '1'));