diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-01-12 15:46:08 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-01-12 15:46:08 +0100 |
commit | 9b24dfcb9f676e7f7a09a9062f0d05b2104a87eb (patch) | |
tree | 8537a905d704980fa633385746376b1267618f07 /src/Makefile | |
parent | 02ad46394e8f887b60fda994f8a5da2ac1937b23 (diff) | |
download | vim-git-9b24dfcb9f676e7f7a09a9062f0d05b2104a87eb.tar.gz |
patch 8.2.0113: "make cmdidxs" failsv8.2.0113
Problem: "make cmdidxs" fails.
Solution: Allow address for ":cquit". Add --not-a-term to avoid a delay.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 1c7094098..08a327754 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2064,7 +2064,7 @@ autoconf: # If this fails because you don't have Vim yet, first build and install Vim # without changes. cmdidxs: ex_cmds.h - vim --clean -X -u create_cmdidxs.vim + vim --clean -X --not-a-term -u create_cmdidxs.vim # The normal command to compile a .c file to its .o file. |