diff options
author | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-06-01 14:53:04 +0000 |
---|---|---|
committer | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-06-01 14:53:04 +0000 |
commit | 2561ff29c56c95491fcd59cc82e033ae6f24c643 (patch) | |
tree | 1ddf509b932492ba4cdc7a17259915d4b9d5841a /eclass/vim.eclass | |
parent | small keepdir typo (diff) | |
download | historical-2561ff29c56c95491fcd59cc82e033ae6f24c643.tar.gz historical-2561ff29c56c95491fcd59cc82e033ae6f24c643.tar.bz2 historical-2561ff29c56c95491fcd59cc82e033ae6f24c643.zip |
make the termcap stuff actually work
Diffstat (limited to 'eclass/vim.eclass')
-rw-r--r-- | eclass/vim.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass index f445e57f8a4c..0d8bc33068c0 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.107 2005/06/01 14:05:28 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.108 2005/06/01 14:53:04 ciaranm Exp $ # Authors: # Ryan Phillips <rphillips@gentoo.org> @@ -466,13 +466,13 @@ src_compile() { # Note: If USE=gpm, then ncurses will still be required. See bug #93970 # for the reasons behind the USE flag change. if version_is_at_least "6.3.075" ; then - use ncurses \ - && myconf="${myconf} --with-tlib=ncurses" \ - || myconf="${myconf} --with-tlib=termcap" - else use termcap-compat \ && myconf="${myconf} --with-tlib=termcap" \ || myconf="${myconf} --with-tlib=ncurses" + else + use ncurses \ + && myconf="${myconf} --with-tlib=ncurses" \ + || myconf="${myconf} --with-tlib=termcap" fi use selinux \ |