diff options
author | David Heidelberg <david@ixit.cz> | 2019-10-27 16:42:04 +0100 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2020-02-01 18:35:52 -0800 |
commit | 7d75ea5a2c39d0cc8b2779f6112c7b56c8eeab32 (patch) | |
tree | a44a351a7b195b5aa394b208d1652a5523bae2c8 /dev-libs/libwacom | |
parent | x11-misc/xorg-cf-files: Remove unnecessary strip-slash (diff) | |
download | gentoo-7d75ea5a2c39d0cc8b2779f6112c7b56c8eeab32.tar.gz gentoo-7d75ea5a2c39d0cc8b2779f6112c7b56c8eeab32.tar.bz2 gentoo-7d75ea5a2c39d0cc8b2779f6112c7b56c8eeab32.zip |
dev-libs/libwacom: 1.0, avoid using GOLD linker
Upstream bug: https://github.com/linuxwacom/libwacom/issues/170
Closes: https://bugs.gentoo.org/694290
Signed-off-by: David Heidelberg <david@ixit.cz>
Closes: https://github.com/gentoo/gentoo/pull/13468
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'dev-libs/libwacom')
-rw-r--r-- | dev-libs/libwacom/libwacom-1.0.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dev-libs/libwacom/libwacom-1.0.ebuild b/dev-libs/libwacom/libwacom-1.0.ebuild index 358cf66a884b..eea01082ec86 100644 --- a/dev-libs/libwacom/libwacom-1.0.ebuild +++ b/dev-libs/libwacom/libwacom-1.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools udev +inherit autotools udev toolchain-funcs DESCRIPTION="Library for identifying Wacom tablets and their model-specific features" HOMEPAGE="https://github.com/linuxwacom/libwacom" @@ -24,6 +24,10 @@ RDEPEND=" " DEPEND="${RDEPEND}" +pkg_setup() { + tc-ld-disable-gold # bug https://github.com/linuxwacom/libwacom/issues/170 +} + src_prepare() { default rm -r data/foo || die # duplicate dir in tarball, bug #693434 |