sys-fs/ufsutils: add -fcommon workaround

Reported-by: Toralf Förster
Closes: https://bugs.gentoo.org/706696
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
This commit is contained in:
Sergei Trofimovich
2020-07-04 21:29:24 +01:00
parent c027994dea
commit fea1183314

View File

@@ -3,7 +3,7 @@
EAPI=4
inherit eutils toolchain-funcs
inherit eutils flag-o-matic toolchain-funcs
DESCRIPTION="FFS/UFS/UFS2 filesystem utilities from FreeBSD"
HOMEPAGE="http://packages.debian.org/source/sid/ufsutils"
@@ -38,6 +38,10 @@ src_prepare() {
}
src_configure() {
# globals are defined in header files and reused in multiple final
# binaries. bug #706696
append-cflags -fcommon
tc-export AR CC
}