diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-02-11 17:03:24 -0500 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-02-11 18:13:57 -0500 |
commit | 7a032c929dd470bf0af3782f7c985659b3fbbed0 (patch) | |
tree | a77e3a09ef83c439e6b8472b564da474392e0714 /games-action/dxx-rebirth | |
parent | games-action/dxx-rebirth: enable py3.10 (diff) | |
download | gentoo-7a032c929dd470bf0af3782f7c985659b3fbbed0.tar.gz gentoo-7a032c929dd470bf0af3782f7c985659b3fbbed0.tar.bz2 gentoo-7a032c929dd470bf0af3782f7c985659b3fbbed0.zip |
games-action/dxx-rebirth: replace -O3 by -O2
Currently fails with -O3, haven't investigated further but do
a replace-flags as a quick workaround.
Closes: https://bugs.gentoo.org/831896
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'games-action/dxx-rebirth')
-rw-r--r-- | games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20210623.ebuild | 3 | ||||
-rw-r--r-- | games-action/dxx-rebirth/dxx-rebirth-9999.ebuild | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20210623.ebuild b/games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20210623.ebuild index 90a8b6d8c8ef..3dc11a9d646a 100644 --- a/games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20210623.ebuild +++ b/games-action/dxx-rebirth/dxx-rebirth-0.61.0_pre20210623.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{8..10} ) -inherit desktop python-any-r1 scons-utils toolchain-funcs xdg +inherit desktop flag-o-matic python-any-r1 scons-utils toolchain-funcs xdg if [[ "${PV}" = 9999 ]]; then inherit git-r3 @@ -217,6 +217,7 @@ dxx_scons() { src_compile() { tc-export CXX PKG_CONFIG + replace-flags -O3 -O2 #831896 dxx_scons register_install_target=0 build } diff --git a/games-action/dxx-rebirth/dxx-rebirth-9999.ebuild b/games-action/dxx-rebirth/dxx-rebirth-9999.ebuild index ed7efde84b19..e73e35686d41 100644 --- a/games-action/dxx-rebirth/dxx-rebirth-9999.ebuild +++ b/games-action/dxx-rebirth/dxx-rebirth-9999.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{8..10} ) -inherit desktop python-any-r1 scons-utils toolchain-funcs xdg +inherit desktop flag-o-matic python-any-r1 scons-utils toolchain-funcs xdg if [[ "${PV}" = 9999 ]]; then inherit git-r3 @@ -219,6 +219,7 @@ dxx_scons() { src_compile() { tc-export CXX PKG_CONFIG + replace-flags -O3 -O2 #831896 dxx_scons register_install_target=0 build } |