summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
Diffstat (limited to 'eclass')
-rw-r--r--eclass/Manifest.gzbin36973 -> 36981 bytes
-rw-r--r--eclass/chromium-2.eclass4
-rw-r--r--eclass/toolchain.eclass6
3 files changed, 5 insertions, 5 deletions
diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz
index 1adb5632fef7..f260517c04fb 100644
--- a/eclass/Manifest.gz
+++ b/eclass/Manifest.gz
Binary files differ
diff --git a/eclass/chromium-2.eclass b/eclass/chromium-2.eclass
index bf509d8ff0f8..cd4495767e58 100644
--- a/eclass/chromium-2.eclass
+++ b/eclass/chromium-2.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: chromium-2.eclass
@@ -122,7 +122,7 @@ chromium_pkg_die() {
fi
# Prevent user problems like bug #348235.
- if ( shopt -s extglob; is-flagq '-g?(gdb)?([1-9])' ); then
+ if is-flagq '-g?(gdb)?([1-9])'; then
ewarn
ewarn "You have enabled debug info (i.e. -g or -ggdb in your CFLAGS/CXXFLAGS)."
ewarn "This produces very large build files causes the linker to consume large"
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index d4007968ac8a..a1093e0fb603 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -1910,9 +1910,9 @@ toolchain_src_test() {
einfo "Comparing with previous cached results at ${BROOT}/var/cache/gcc/${SLOT}"
# Exit with the following values:
- # 0 if there is nothing of interest
- # 1 if there are errors when comparing single test case files
- # N for the number of errors found when comparing directories
+ # 0 if there is nothing of interest
+ # 1 if there are errors when comparing single test case files
+ # N for the number of errors found when comparing directories
"${S}"/contrib/compare_tests "${BROOT}"/var/cache/gcc/${SLOT}/ . || die "Comparison for tests results failed, error code: $?"
fi
}