diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2024-03-17 13:57:55 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-03-17 13:59:04 +0100 |
commit | 88f503e81b931d4a32a153b1be14ac77aeb064e8 (patch) | |
tree | 8345e866b53eef83935cc10749165f6f449ccb16 /app-emulation/86Box | |
parent | sys-fs/multipath-tools: Stabilize 0.9.7-r1 ppc, #927156 (diff) | |
download | gentoo-88f503e81b931d4a32a153b1be14ac77aeb064e8.tar.gz gentoo-88f503e81b931d4a32a153b1be14ac77aeb064e8.tar.bz2 gentoo-88f503e81b931d4a32a153b1be14ac77aeb064e8.zip |
app-emulation/86Box: fix unused cmake variable
Closes: https://bugs.gentoo.org/927194
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-emulation/86Box')
-rw-r--r-- | app-emulation/86Box/86Box-4.0.1-r1.ebuild | 2 | ||||
-rw-r--r-- | app-emulation/86Box/86Box-4.1.ebuild | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app-emulation/86Box/86Box-4.0.1-r1.ebuild b/app-emulation/86Box/86Box-4.0.1-r1.ebuild index 16aac070243a..9945e8bf8d6e 100644 --- a/app-emulation/86Box/86Box-4.0.1-r1.ebuild +++ b/app-emulation/86Box/86Box-4.0.1-r1.ebuild @@ -74,7 +74,7 @@ src_configure() { -DRTMIDI="ON" -DQT="$(usex qt5 'ON' $(usex qt6))" -DRELEASE="ON" - -DUSE_QT6="$(usex qt6)" + $(usex qt6 '-DUSE_QT6=ON') ) cmake_src_configure diff --git a/app-emulation/86Box/86Box-4.1.ebuild b/app-emulation/86Box/86Box-4.1.ebuild index 7937fddca15e..45d6114f04fe 100644 --- a/app-emulation/86Box/86Box-4.1.ebuild +++ b/app-emulation/86Box/86Box-4.1.ebuild @@ -72,7 +72,7 @@ src_configure() { -DRTMIDI="ON" -DQT="$(usex qt5 'ON' $(usex qt6))" -DRELEASE="ON" - -DUSE_QT6="$(usex qt6)" + $(usex qt6 '-DUSE_QT6=ON') ) cmake_src_configure |