vim wasn't linking against ncurses (#3838)

See #3829.  Vim's configure was searching for ncurses
instead of ncursesw.
This commit is contained in:
George Hartzell 2017-04-14 11:13:36 -07:00 committed by Adam J. Stewart
parent 9626a042f8
commit a4311f242a

View file

@ -90,6 +90,8 @@ def configure_args(self):
configure_args = ["--enable-fail-if-missing"] configure_args = ["--enable-fail-if-missing"]
configure_args.append("--with-tlib=ncursesw")
configure_args.append("--with-features=" + feature_set) configure_args.append("--with-features=" + feature_set)
if '+python' in spec: if '+python' in spec: