commit: f7714cf7b4572085c67e8c4f0470defcefb1e6ab Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Oct 4 00:23:04 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Oct 4 00:24:39 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=f7714cf7
ecompress: fix typo in ___makeopts_jobs Bug: https://bugs.gentoo.org/874597 Fixes: 04302e2d4d5fafd3ed2f2375473d6fe3a2a2faa8 Fixes: 9ae3ec1af0071354db3bf57bc5cdec963b056e77 Signed-off-by: Sam James <sam <AT> gentoo.org> NEWS | 6 ++++++ bin/ecompress | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 615de4313..28e8f97ca 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +portage-3.0.38.1 (2022-10-04) +-------------- + +Bug fixes: +* ecompress: Fix typo in ___makeopts_jobs (bug #874597). + portage-3.0.38 (2022-10-01) -------------- diff --git a/bin/ecompress b/bin/ecompress index 3e4b77a45..977f8d7b4 100755 --- a/bin/ecompress +++ b/bin/ecompress @@ -128,8 +128,8 @@ if [[ ${PORTAGE_COMPRESS_FLAGS+set} != "set" ]] ; then # See: https://bugs.gentoo.org/672916 # Setting '--rm' will remove the source files after a successful compression. lz4) PORTAGE_COMPRESS_FLAGS="-m --rm";; - xz) PORTAGE_COMPRESS_FLAGS="-9 -T$(__makeopts_jobs)";; - zstd) PORTAGE_COMPRESS_FLAGS="-q --rm -T$(__makeopts_jobs)";; + xz) PORTAGE_COMPRESS_FLAGS="-9 -T$(___makeopts_jobs)";; + zstd) PORTAGE_COMPRESS_FLAGS="-q --rm -T$(___makeopts_jobs)";; esac fi
