diff options
author | Fabian Groffen <grobian@gentoo.org> | 2017-09-25 08:55:19 +0200 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2017-09-25 08:55:19 +0200 |
commit | e17457c661559f3ad47bd13ed0d245326e3a3703 (patch) | |
tree | 8500fcd1965568c6377e5ad8f81d9f9c61c7107f /media-libs/fontconfig | |
parent | sys-kernel/git-sources: Automated version bump to 4.14_rc2. (diff) | |
download | gentoo-e17457c661559f3ad47bd13ed0d245326e3a3703.tar.gz gentoo-e17457c661559f3ad47bd13ed0d245326e3a3703.tar.bz2 gentoo-e17457c661559f3ad47bd13ed0d245326e3a3703.zip |
media-libs/fontconfig: fix build on Darwin
Package-Manager: Portage-2.3.8, Repoman-2.3.1
Diffstat (limited to 'media-libs/fontconfig')
-rw-r--r-- | media-libs/fontconfig/fontconfig-2.12.6.ebuild | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/media-libs/fontconfig/fontconfig-2.12.6.ebuild b/media-libs/fontconfig/fontconfig-2.12.6.ebuild index 384c7ad55861..e1a756f344f5 100644 --- a/media-libs/fontconfig/fontconfig-2.12.6.ebuild +++ b/media-libs/fontconfig/fontconfig-2.12.6.ebuild @@ -43,6 +43,13 @@ pkg_setup() { src_prepare() { default eautoreconf + + # this should be ok for everyone, but for safety I only apply it to + # the platform I need this for sure + if [[ ${CHOST} == *-darwin* ]] ; then + # https://bugs.freedesktop.org/show_bug.cgi?id=101280 + rm src/fcobjshash.h src/fcobjshash.gperf + fi } multilib_src_configure() { |