www-client/chawan: makeopts_jobs -> get_makeopts_jobs

Recently did a EAPI change, and the ebuild command ran fine, so I
thought everything was fine

Now I've realized I should've run every ebuild phase instead of just the
pretend and unpack phases

Previously the ebuilds would fail because makeopts_jobs is banned in
EAPI 9, now it should work

Signed-off-by: ingenarel (NeoJesus) <ingenarel_neojesus@disroot.org>
This commit is contained in:
ingenarel (NeoJesus)
2026-06-22 09:37:14 +06:00
parent 32e4b80573
commit 677df70af9
3 changed files with 3 additions and 3 deletions

View File

@@ -50,7 +50,7 @@ src_configure(){
# code is mostly copy pasted from the nim_gen_config() function from nim-utils.eclass, modifed a bit to actually
# append to the original nim.cfg, instead of replacing it
cat >> "${S}"/nim.cfg <<- EOF || die "Failed to append to Nim config"
--parallelBuild:"$(makeopts_jobs)"
--parallelBuild:"$(get_makeopts_jobs)"
cc:"gcc"
gcc.exe:"$(tc-getCC)"

View File

@@ -50,7 +50,7 @@ src_configure(){
# code is mostly copy pasted from the nim_gen_config() function from nim-utils.eclass, modifed a bit to actually
# append to the original nim.cfg, instead of replacing it
cat >> "${S}"/nim.cfg <<- EOF || die "Failed to append to Nim config"
--parallelBuild:"$(makeopts_jobs)"
--parallelBuild:"$(get_makeopts_jobs)"
cc:"gcc"
gcc.exe:"$(tc-getCC)"

View File

@@ -50,7 +50,7 @@ src_configure(){
# code is mostly copy pasted from the nim_gen_config() function from nim-utils.eclass, modifed a bit to actually
# append to the original nim.cfg, instead of replacing it
cat >> "${S}"/nim.cfg <<- EOF || die "Failed to append to Nim config"
--parallelBuild:"$(makeopts_jobs)"
--parallelBuild:"$(get_makeopts_jobs)"
cc:"gcc"
gcc.exe:"$(tc-getCC)"