diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-12-05 17:40:30 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-12-05 17:40:30 +0100 |
commit | 2d7243fe9d10d9054dbceceb9a3f43b5eb4e3f56 (patch) | |
tree | fd823522e1e3fe6c1d95a7009ec9648ee12b35d9 /package/ncurses/Makefile | |
parent | a7f00b82b5eadfcb460fd69d8de70d1c08a3ec9e (diff) |
kernel update and different fixes for lemote
Diffstat (limited to 'package/ncurses/Makefile')
-rw-r--r-- | package/ncurses/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/package/ncurses/Makefile b/package/ncurses/Makefile index fb3a39eb5..0841a9070 100644 --- a/package/ncurses/Makefile +++ b/package/ncurses/Makefile @@ -80,13 +80,17 @@ libncurses-install: ${INSTALL_DIR} ${IDIR_LIBNCURSES}/usr/lib ${CP} ${WRKINST}/usr/lib/lib{form,menu,ncurses,panel}.so* \ ${IDIR_LIBNCURSES}/usr/lib + for ti in rxvt rxvt-unicode; do \ + TERMINFO=${WRKINST}/usr/share/terminfo \ + tic -x ./files/$$ti.ti; \ + done ifeq (${ADK_PACKAGE_LIBNCURSES_FULL_TERMINFO},y) ${INSTALL_DIR} ${IDIR_LIBNCURSES}/usr/share ${CP} ${WRKINST}/usr/share/terminfo ${IDIR_LIBNCURSES}/usr/share/ else ${INSTALL_DIR} ${IDIR_LIBNCURSES}/usr/share/terminfo/ for f in ansi dumb linux screen vt100 vt102 \ - rxvt vt220 xterm xterm-color xterm-xfree86; do \ + rxvt rxvt-unicode vt220 xterm xterm-color xterm-xfree86; do \ ${INSTALL_DIR} ${IDIR_LIBNCURSES}/usr/share/terminfo/$${f:0:1}; \ ${INSTALL_DATA} ${WRKINST}/usr/share/terminfo/*/$$f \ ${IDIR_LIBNCURSES}/usr/share/terminfo/$${f:0:1}/$$f; \ |