diff options
author | Sam James <sam@gentoo.org> | 2022-07-31 06:07:53 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-07-31 07:16:28 +0100 |
commit | bd09d0833040fb8fe0659d7e14279898b470803a (patch) | |
tree | 6bfef6e66aab7385a7ce38531912864c53636ae7 /www-client | |
parent | sys-kernel/pf-sources: add 5.18-pf5 (diff) | |
download | gentoo-bd09d0833040fb8fe0659d7e14279898b470803a.tar.gz gentoo-bd09d0833040fb8fe0659d7e14279898b470803a.tar.bz2 gentoo-bd09d0833040fb8fe0659d7e14279898b470803a.zip |
www-client/chromium: drop unnecessary 'shopt -s extglob'
We don't need a subshell because of how is-flagq works.
Noticed as a result of fallout from the bash change
which led to us noticing 5e9a3926fd3e0e573f529fd6aefebba53e082f4a.
Thanks-to: Ionen Wolkens <ionen@gentoo.org>
Thanks-to: Kerin Millar <kfm@plushkava.net>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'www-client')
5 files changed, 5 insertions, 5 deletions
diff --git a/www-client/chromium/chromium-103.0.5060.114.ebuild b/www-client/chromium/chromium-103.0.5060.114.ebuild index 4ddba0b51bd6..c0bb0ecd21a5 100644 --- a/www-client/chromium/chromium-103.0.5060.114.ebuild +++ b/www-client/chromium/chromium-103.0.5060.114.ebuild @@ -260,7 +260,7 @@ pre_build_checks() { CHECKREQS_DISK_BUILD="12G" tc-is-cross-compiler && CHECKREQS_DISK_BUILD="15G" fi - if ( shopt -s extglob; is-flagq '-g?(gdb)?([1-9])' ); then + if is-flagq '-g?(gdb)?([1-9])'; then if use custom-cflags || use component-build; then CHECKREQS_DISK_BUILD="25G" fi diff --git a/www-client/chromium/chromium-103.0.5060.134.ebuild b/www-client/chromium/chromium-103.0.5060.134.ebuild index 1d96605e1349..9cb6928cc1fb 100644 --- a/www-client/chromium/chromium-103.0.5060.134.ebuild +++ b/www-client/chromium/chromium-103.0.5060.134.ebuild @@ -260,7 +260,7 @@ pre_build_checks() { CHECKREQS_DISK_BUILD="12G" tc-is-cross-compiler && CHECKREQS_DISK_BUILD="15G" fi - if ( shopt -s extglob; is-flagq '-g?(gdb)?([1-9])' ); then + if is-flagq '-g?(gdb)?([1-9])'; then if use custom-cflags || use component-build; then CHECKREQS_DISK_BUILD="25G" fi diff --git a/www-client/chromium/chromium-104.0.5112.12.ebuild b/www-client/chromium/chromium-104.0.5112.12.ebuild index 75d82441782f..0aeeecd3fb38 100644 --- a/www-client/chromium/chromium-104.0.5112.12.ebuild +++ b/www-client/chromium/chromium-104.0.5112.12.ebuild @@ -271,7 +271,7 @@ pre_build_checks() { tc-is-cross-compiler && CHECKREQS_DISK_BUILD="15G" use pgo && CHECKREQS_DISK_BUILD="19G" fi - if ( shopt -s extglob; is-flagq '-g?(gdb)?([1-9])' ); then + if is-flagq '-g?(gdb)?([1-9])'; then if use custom-cflags || use component-build; then CHECKREQS_DISK_BUILD="25G" fi diff --git a/www-client/chromium/chromium-104.0.5112.48.ebuild b/www-client/chromium/chromium-104.0.5112.48.ebuild index c7f5e104a472..593650fedb44 100644 --- a/www-client/chromium/chromium-104.0.5112.48.ebuild +++ b/www-client/chromium/chromium-104.0.5112.48.ebuild @@ -271,7 +271,7 @@ pre_build_checks() { tc-is-cross-compiler && CHECKREQS_DISK_BUILD="15G" use pgo && CHECKREQS_DISK_BUILD="19G" fi - if ( shopt -s extglob; is-flagq '-g?(gdb)?([1-9])' ); then + if is-flagq '-g?(gdb)?([1-9])'; then if use custom-cflags || use component-build; then CHECKREQS_DISK_BUILD="25G" fi diff --git a/www-client/chromium/chromium-104.0.5112.57.ebuild b/www-client/chromium/chromium-104.0.5112.57.ebuild index c7f5e104a472..593650fedb44 100644 --- a/www-client/chromium/chromium-104.0.5112.57.ebuild +++ b/www-client/chromium/chromium-104.0.5112.57.ebuild @@ -271,7 +271,7 @@ pre_build_checks() { tc-is-cross-compiler && CHECKREQS_DISK_BUILD="15G" use pgo && CHECKREQS_DISK_BUILD="19G" fi - if ( shopt -s extglob; is-flagq '-g?(gdb)?([1-9])' ); then + if is-flagq '-g?(gdb)?([1-9])'; then if use custom-cflags || use component-build; then CHECKREQS_DISK_BUILD="25G" fi |