diff options
author | Sam James <sam@gentoo.org> | 2022-02-28 00:23:24 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-02-28 00:23:53 +0000 |
commit | af10fe810dd1e7d1c6c132a2e659a0dc40df2ed9 (patch) | |
tree | ac8e2a1cd109a5458e8c0af64c2cb4c4e24fe699 | |
parent | net-wireless/unifi: drop 7.0.22 (diff) | |
download | gentoo-af10fe810dd1e7d1c6c132a2e659a0dc40df2ed9.tar.gz gentoo-af10fe810dd1e7d1c6c132a2e659a0dc40df2ed9.tar.bz2 gentoo-af10fe810dd1e7d1c6c132a2e659a0dc40df2ed9.zip |
dev-libs/capnproto: final(!) libatomic fix
Bug: https://bugs.gentoo.org/832816
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | dev-libs/capnproto/capnproto-0.9.1.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dev-libs/capnproto/capnproto-0.9.1.ebuild b/dev-libs/capnproto/capnproto-0.9.1.ebuild index 69ef73c4bba3..2dae5197996e 100644 --- a/dev-libs/capnproto/capnproto-0.9.1.ebuild +++ b/dev-libs/capnproto/capnproto-0.9.1.ebuild @@ -27,7 +27,9 @@ DEPEND="${RDEPEND} src_configure() { if use arm || use ppc || use mips || [[ ${CHOST} == *i486* ]] ; then - append-libs -latomic + # append-libs won't work here, cmake doesn't respect it + # ... and ldflags gets missed once + append-flags -latomic fi local mycmakeargs=( |