diff options
author | Sławomir Nizio <slawomir.nizio@sabayon.org> | 2018-04-26 20:01:04 +0000 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2018-05-27 10:49:10 +0900 |
commit | 06bda2e208c8a29e60c48ec6e1e8427a17771f71 (patch) | |
tree | b5c3b7b02d001fd40dbb5892554e7861044b87eb /x11-terms/kterm | |
parent | app-shells/yash: initial import (diff) | |
download | gentoo-06bda2e208c8a29e60c48ec6e1e8427a17771f71.tar.gz gentoo-06bda2e208c8a29e60c48ec6e1e8427a17771f71.tar.bz2 gentoo-06bda2e208c8a29e60c48ec6e1e8427a17771f71.zip |
x11-terms/kterm: fix build with sys-libs/ncurses[tinfo]
Closes: https://bugs.gentoo.org/654146
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'x11-terms/kterm')
-rw-r--r-- | x11-terms/kterm/kterm-6.2.0-r6.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/x11-terms/kterm/kterm-6.2.0-r6.ebuild b/x11-terms/kterm/kterm-6.2.0-r6.ebuild index f13a939ad24e..a4867bab0a45 100644 --- a/x11-terms/kterm/kterm-6.2.0-r6.ebuild +++ b/x11-terms/kterm/kterm-6.2.0-r6.ebuild @@ -50,7 +50,8 @@ src_compile(){ emake \ CC="$(tc-getCC)" \ CDEBUGFLAGS="${CFLAGS}" \ - LOCAL_LDFLAGS="${LDFLAGS} $("$(tc-getPKG_CONFIG)" --libs ncurses)" \ + LOCAL_LDFLAGS="${LDFLAGS}" \ + TERMCAPLIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)" \ XAPPLOADDIR="${EPREFIX}/usr/share/X11/app-defaults" } |