diff options
author | Sam James <sam@gentoo.org> | 2024-09-11 01:08:24 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-09-11 01:08:24 +0100 |
commit | 8606d2863b3e21f9edcc130faf04a7a73bdb3d53 (patch) | |
tree | 3bd2b0c6017f1c5d8d92ec259d502889b9398e77 /sys-auth/sssd | |
parent | dev-libs/glib: fix systemtap has_version check (diff) | |
download | gentoo-8606d2863b3e21f9edcc130faf04a7a73bdb3d53.tar.gz gentoo-8606d2863b3e21f9edcc130faf04a7a73bdb3d53.tar.bz2 gentoo-8606d2863b3e21f9edcc130faf04a7a73bdb3d53.zip |
sys-auth/sssd: fix systemtap has_version check
Bug: https://bugs.gentoo.org/938302
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-auth/sssd')
-rw-r--r-- | sys-auth/sssd/sssd-2.9.4.ebuild | 2 | ||||
-rw-r--r-- | sys-auth/sssd/sssd-2.9.5.ebuild | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys-auth/sssd/sssd-2.9.4.ebuild b/sys-auth/sssd/sssd-2.9.4.ebuild index 2ef4f0026a1c..6592cc6d1e68 100644 --- a/sys-auth/sssd/sssd-2.9.4.ebuild +++ b/sys-auth/sssd/sssd-2.9.4.ebuild @@ -164,7 +164,7 @@ src_configure() { local native_dbus_cflags=$($(tc-getPKG_CONFIG) --cflags dbus-1 || die) # 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 export DTRACE="${BROOT}"/usr/bin/stap-dtrace fi diff --git a/sys-auth/sssd/sssd-2.9.5.ebuild b/sys-auth/sssd/sssd-2.9.5.ebuild index cb1925720b92..995e823a05e9 100644 --- a/sys-auth/sssd/sssd-2.9.5.ebuild +++ b/sys-auth/sssd/sssd-2.9.5.ebuild @@ -164,7 +164,7 @@ src_configure() { local native_dbus_cflags=$($(tc-getPKG_CONFIG) --cflags dbus-1 || die) # 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 export DTRACE="${BROOT}"/usr/bin/stap-dtrace fi |