diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-10-28 20:28:23 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-10-28 20:28:23 +0200 |
commit | ef83956e1e67736b4c6b886d897b74f022622a74 (patch) | |
tree | 7f3a9843323ccadb416d2ee3a8fda8170517f6b8 /src/auto | |
parent | a6ce1ccf5c10baa5c2a25897c46961d751a21dda (diff) | |
download | vim-ef83956e1e67736b4c6b886d897b74f022622a74.zip |
patch 8.0.1235: cannot disable the terminal feature in a huge build
Problem: Cannot disable the terminal feature in a huge build. (lindhobe)
Solution: Adjust the autoconf check. (Kazunobu Kuriyama, closes #2242)
Diffstat (limited to 'src/auto')
-rwxr-xr-x | src/auto/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auto/configure b/src/auto/configure index 4ee62b371..fa9276a13 100755 --- a/src/auto/configure +++ b/src/auto/configure @@ -7475,7 +7475,7 @@ fi $as_echo_n "checking --enable-terminal argument... " >&6; } # Check whether --enable-terminal was given. if test "${enable_terminal+set}" = set; then : - enableval=$enable_terminal; enable_terminal="yes" + enableval=$enable_terminal; else enable_terminal="auto" fi |