app-arch/lbzip2: Sync with Gentoo

It's from Gentoo commit 4ef726839f212339d1244880c029d6b89a59d71e.
This commit is contained in:
Flatcar Buildbot 2025-01-13 07:04:35 +00:00 committed by Krzesimir Nowak
parent ba828ac4da
commit 5933f8a157

View File

@ -3,7 +3,7 @@
EAPI=8
inherit autotools flag-o-matic
inherit autotools flag-o-matic toolchain-funcs
DESCRIPTION="Parallel bzip2 utility"
HOMEPAGE="https://github.com/kjn/lbzip2/"
@ -29,6 +29,10 @@ src_prepare() {
src_configure() {
use static && append-ldflags -static
# fix clang miscompilation: #910438
# see also: https://github.com/llvm/llvm-project/issues/87189
tc-is-clang && test-flag-CC -mno-avx512f && append-cflags -mno-avx512f
local myeconfargs=(
$(use_enable debug tracing)
)