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