diff options
author | 2018-12-29 12:30:05 -0500 | |
---|---|---|
committer | 2018-12-29 12:30:05 -0500 | |
commit | c9749cd7acbcc6731016ccf8f311c96cb91e6ba3 (patch) | |
tree | fe1fc562a1d90536cfdd50aad7dd712316dda641 /app-text/aspell | |
parent | app-misc/screen: add support for musl (diff) | |
download | gentoo-c9749cd7acbcc6731016ccf8f311c96cb91e6ba3.tar.gz gentoo-c9749cd7acbcc6731016ccf8f311c96cb91e6ba3.tar.bz2 gentoo-c9749cd7acbcc6731016ccf8f311c96cb91e6ba3.zip |
app-text/aspell: add support for musl
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'app-text/aspell')
-rw-r--r-- | app-text/aspell/aspell-0.60.7_rc1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app-text/aspell/aspell-0.60.7_rc1.ebuild b/app-text/aspell/aspell-0.60.7_rc1.ebuild index eecfee4dcba2..078e7eb71a35 100644 --- a/app-text/aspell/aspell-0.60.7_rc1.ebuild +++ b/app-text/aspell/aspell-0.60.7_rc1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -72,7 +72,7 @@ src_prepare() { # unicode patch breaks on Darwin, NCURSES_WIDECHAR won't get set # any more. Fix this. - [[ ${CHOST} == *-darwin* ]] && use unicode && \ + [[ ${CHOST} == *-darwin* ]] || [[ ${CHOST} == *-musl* ]] && use unicode && \ append-cppflags -DNCURSES_WIDECHAR=1 } |