diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-03-06 22:50:12 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-03-06 22:50:46 +0100 |
commit | 5805cc6a36fae4888673210de5f8e33b3cdb5001 (patch) | |
tree | 75f2bd730c8b51370630133eadb50774ef173a8a /dev-util/lttng-tools | |
parent | games-board/gnubg: add 1.08.002 (diff) | |
download | gentoo-5805cc6a36fae4888673210de5f8e33b3cdb5001.tar.gz gentoo-5805cc6a36fae4888673210de5f8e33b3cdb5001.tar.bz2 gentoo-5805cc6a36fae4888673210de5f8e33b3cdb5001.zip |
dev-util/lttng-tools: Apply musl-1.2.4 largefile workaround
Bug: https://bugs.gentoo.org/906928
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'dev-util/lttng-tools')
-rw-r--r-- | dev-util/lttng-tools/lttng-tools-2.13.9.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild b/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild index 1edf4a57fd84..9375115c5205 100644 --- a/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild +++ b/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild @@ -1,8 +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 +inherit flag-o-matic + # Please bump the following packages together: # dev-util/lttng-modules # dev-util/lttng-tools @@ -36,6 +38,9 @@ QA_CONFIG_IMPL_DECL_SKIP=( ) src_configure() { + # bug 906928 + use elibc_musl && append-cppflags -D_LARGEFILE64_SOURCE + econf $(usex ust "" --without-lttng-ust) } |