diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-30 15:27:34 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-30 15:27:34 +0100 |
commit | 2875c0ee841e74e272e832fdfb91dc8c73013ccd (patch) | |
tree | 20d0ec969f51b9eb3410090f64a1fc6e092b9fb0 /package/ncurses | |
parent | 86ada69f32491de2415d237605370e7f4e8d5e01 (diff) | |
parent | 47e50c10a8bb626f3366912bc4691bd5fbddea45 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/ncurses')
-rw-r--r-- | package/ncurses/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/ncurses/Makefile b/package/ncurses/Makefile index 9dd44d4cc..cd41f0f92 100644 --- a/package/ncurses/Makefile +++ b/package/ncurses/Makefile @@ -24,6 +24,7 @@ CONFIGURE_ARGS+= --without-cxx \ --with-build-cc=${HOSTCC} \ --without-progs \ --with-fallbacks \ + --disable-termcap \ --without-ada \ --with-shared \ --with-normal \ @@ -69,8 +70,9 @@ post-install: ${INSTALL_DIR} ${IDIR_LIBNCURSES}/usr/share/terminfo/ for f in ansi dumb linux rxvt screen vt100 vt102 \ vt220 wsvt25 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; \ + ${IDIR_LIBNCURSES}/usr/share/terminfo/$${f:0:1}/$$f; \ done ${INSTALL_DIR} ${IDIR_LIBNCURSES_DEV}/usr/include ${CP} ${WRKINST}/usr/include/*.h ${IDIR_LIBNCURSES_DEV}/usr/include |