diff options
author | Sam James <sam@gentoo.org> | 2022-05-17 01:49:03 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-05-17 05:33:56 +0000 |
commit | b29976518ce1e4693b08b0e45544e14f913ab6d3 (patch) | |
tree | 178f904a0232a0cb4c809ba8da684001c42753b3 /games-emulation | |
parent | dev-lang/python: [QA] drop (very) stale GCC version checks (diff) | |
download | gentoo-b29976518ce1e4693b08b0e45544e14f913ab6d3.tar.gz gentoo-b29976518ce1e4693b08b0e45544e14f913ab6d3.tar.bz2 gentoo-b29976518ce1e4693b08b0e45544e14f913ab6d3.zip |
games-emulation/pcsx2: [QA] drop (very) stale GCC version checks
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/pcsx2/pcsx2-1.6.0-r3.ebuild | 4 | ||||
-rw-r--r-- | games-emulation/pcsx2/pcsx2-9999.ebuild | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/games-emulation/pcsx2/pcsx2-1.6.0-r3.ebuild b/games-emulation/pcsx2/pcsx2-1.6.0-r3.ebuild index 8a6662ae3aa4..763aa3e53529 100644 --- a/games-emulation/pcsx2/pcsx2-1.6.0-r3.ebuild +++ b/games-emulation/pcsx2/pcsx2-1.6.0-r3.ebuild @@ -53,9 +53,7 @@ pkg_setup() { if [[ ${MERGE_TYPE} != binary && $(tc-getCC) == *gcc* ]]; then # -mxsave flag is needed when GCC >= 8.2 is used # https://bugs.gentoo.org/685156 - if [[ $(gcc-major-version) -gt 8 || $(gcc-major-version) == 8 && $(gcc-minor-version) -ge 2 ]]; then - append-flags -mxsave - fi + append-flags -mxsave fi } diff --git a/games-emulation/pcsx2/pcsx2-9999.ebuild b/games-emulation/pcsx2/pcsx2-9999.ebuild index 8c462bcb79c6..0d816ee8c404 100644 --- a/games-emulation/pcsx2/pcsx2-9999.ebuild +++ b/games-emulation/pcsx2/pcsx2-9999.ebuild @@ -64,9 +64,7 @@ pkg_setup() { if [[ ${MERGE_TYPE} != binary && $(tc-getCC) == *gcc* ]]; then # -mxsave flag is needed when GCC >= 8.2 is used # https://bugs.gentoo.org/685156 - if [[ $(gcc-major-version) -gt 8 || $(gcc-major-version) == 8 && $(gcc-minor-version) -ge 2 ]]; then - append-flags -mxsave - fi + append-flags -mxsave fi } |