comparison src/Makefile @ 19106:38d18056e6e6 v8.2.0113

patch 8.2.0113: "make cmdidxs" fails Commit: https://github.com/vim/vim/commit/9b24dfcb9f676e7f7a09a9062f0d05b2104a87eb Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 12 15:46:08 2020 +0100 patch 8.2.0113: "make cmdidxs" fails Problem: "make cmdidxs" fails. Solution: Allow address for ":cquit". Add --not-a-term to avoid a delay.
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 Jan 2020 16:00:03 +0100
parents bb87c5c1e29b
children 94eda51ba9ba
comparison
equal deleted inserted replaced
19105:7024ec2417e7 19106:38d18056e6e6
2062 # Run vim script to generate the Ex command lookup table. 2062 # Run vim script to generate the Ex command lookup table.
2063 # This only needs to be run when a command name has been added or changed. 2063 # This only needs to be run when a command name has been added or changed.
2064 # If this fails because you don't have Vim yet, first build and install Vim 2064 # If this fails because you don't have Vim yet, first build and install Vim
2065 # without changes. 2065 # without changes.
2066 cmdidxs: ex_cmds.h 2066 cmdidxs: ex_cmds.h
2067 vim --clean -X -u create_cmdidxs.vim 2067 vim --clean -X --not-a-term -u create_cmdidxs.vim
2068 2068
2069 2069
2070 # The normal command to compile a .c file to its .o file. 2070 # The normal command to compile a .c file to its .o file.
2071 # Without or with ALL_CFLAGS. 2071 # Without or with ALL_CFLAGS.
2072 CCC_NF = $(CC) -c -I$(srcdir) 2072 CCC_NF = $(CC) -c -I$(srcdir)