diff options
author | Sam James <sam@gentoo.org> | 2024-09-11 01:05:38 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-09-11 01:05:38 +0100 |
commit | 943a450e07e1a1959b34354faad06541dd515c12 (patch) | |
tree | 7bb871ca8a9d2150dde40e52d2717918a65076c5 /app-emulation/qemu/qemu-8.1.5.ebuild | |
parent | profiles.desc: Switch all glibc mips profiles to stable or dev, and some musl... (diff) | |
download | gentoo-943a450e07e1a1959b34354faad06541dd515c12.tar.gz gentoo-943a450e07e1a1959b34354faad06541dd515c12.tar.bz2 gentoo-943a450e07e1a1959b34354faad06541dd515c12.zip |
app-emulation/qemu: fix systemtap has_version check
Bug: https://bugs.gentoo.org/938302
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-emulation/qemu/qemu-8.1.5.ebuild')
-rw-r--r-- | app-emulation/qemu/qemu-8.1.5.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app-emulation/qemu/qemu-8.1.5.ebuild b/app-emulation/qemu/qemu-8.1.5.ebuild index f25b0b58db19..5aacea78586a 100644 --- a/app-emulation/qemu/qemu-8.1.5.ebuild +++ b/app-emulation/qemu/qemu-8.1.5.ebuild @@ -456,7 +456,7 @@ src_prepare() { export WINDRES=${CHOST}-windres # Workaround for bug #938302 - if use systemtap && ! has_version "dev-debug/systemtap[dtrace-symlink(-)]" ; then + if use systemtap && has_version "dev-debug/systemtap[-dtrace-symlink(+)]" ; then cat >> "${S}"/configs/meson/linux.txt <<-EOF || die [binaries] dtrace='stap-dtrace' |