summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2025-01-16 06:41:40 +0000
committerV3n3RiX <venerix@koprulu.sector>2025-01-16 06:41:40 +0000
commitcb2f73d10494730ba590096a1f24ebc6d0d61a9f (patch)
tree6b17212245a07479b72573fb8380352300de6b65 /eclass
parent8e26aeaca2a19592a9eea3917f3139bfde8641f0 (diff)
gentoo auto-resync : 16:01:2025 - 06:41:40
Diffstat (limited to 'eclass')
-rw-r--r--eclass/Manifest.gzbin40180 -> 40184 bytes
-rw-r--r--eclass/optfeature.eclass4
-rw-r--r--eclass/toolchain.eclass3
3 files changed, 4 insertions, 3 deletions
diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz
index d794d5266f1d..3c10a81b27bc 100644
--- a/eclass/Manifest.gz
+++ b/eclass/Manifest.gz
Binary files differ
diff --git a/eclass/optfeature.eclass b/eclass/optfeature.eclass
index c8b4911320d3..b82ac893addd 100644
--- a/eclass/optfeature.eclass
+++ b/eclass/optfeature.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: optfeature.eclass
@@ -79,7 +79,7 @@ optfeature_header() {
# @CODE
# pkg_postinst() {
# optfeature "foo support" app-misc/foo
-# optfeature "bar support" app-misc/bar app-misc/baz[bar]
+# optfeature "bar support" app-misc/bar "app-misc/baz[bar]"
# optfeature "alphabet support" "app-misc/a app-misc/b" app-misc/c
# }
# @CODE
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 86302f3bcb4a..ad4703fc550e 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -3159,7 +3159,7 @@ toolchain_death_notice() {
pushd "${WORKDIR}" >/dev/null
(echo '' | $(tc-getCC ${CTARGET}) ${CFLAGS} -v -E - 2>&1) > "${dir}"/gccinfo.log
[[ -e "${T}"/build.log ]] && cp "${T}"/build.log "${dir}"
- tar -carf "${WORKDIR}"/gcc-build-logs.tar.xz \
+ tar -arf "${WORKDIR}"/gcc-build-logs.tar.xz \
"${dir#${WORKDIR}/}"/gccinfo.log "${dir#${WORKDIR}/}"/build.log $(find -name "${dir#${WORKDIR}/}"/config.log)
rm "${dir#${WORKDIR}/}"/gccinfo.log "${dir#${WORKDIR}/}"/build.log
eerror
@@ -3168,6 +3168,7 @@ toolchain_death_notice() {
popd >/dev/null
fi
done
+ xz -9e "${WORKDIR}"/gcc-build-logs.tar.xz
}
fi