diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-03-29 00:25:25 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-03-29 18:45:10 +0000 |
commit | 74d15cc540af693ad1ebd92754ebb0634a6985c5 (patch) | |
tree | a313514ef1d9d76ef38de672a2451ad3ffa24c43 /sys-cluster | |
parent | metadata/install-qa-check.d: make the FHS paths warning easier to read (diff) | |
download | gentoo-74d15cc540af693ad1ebd92754ebb0634a6985c5.tar.gz gentoo-74d15cc540af693ad1ebd92754ebb0634a6985c5.tar.bz2 gentoo-74d15cc540af693ad1ebd92754ebb0634a6985c5.zip |
sys-cluster/sanlock: mark as LTO-unsafe
Closes: https://bugs.gentoo.org/863734
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/sanlock/sanlock-3.8.5.ebuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys-cluster/sanlock/sanlock-3.8.5.ebuild b/sys-cluster/sanlock/sanlock-3.8.5.ebuild index 74db35ff3d2c..1c3de529c26b 100644 --- a/sys-cluster/sanlock/sanlock-3.8.5.ebuild +++ b/sys-cluster/sanlock/sanlock-3.8.5.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( python3_{9..11} ) -inherit linux-info python-r1 systemd +inherit flag-o-matic linux-info python-r1 systemd DESCRIPTION="shared storage lock manager" HOMEPAGE="https://pagure.io/sanlock" @@ -35,6 +35,11 @@ PATCHES=( CONFIG_CHECK="~SOFT_WATCHDOG" src_compile() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/863734 + # https://pagure.io/sanlock/issue/10 + filter-lto + for d in wdmd src fence_sanlock reset; do emake -C ${d} done |