0
0
mirror of https://github.com/vim/vim.git synced 2025-09-29 04:34:16 -04:00

patch 7.4.2032

Problem:    Build fails with 64 bit MinGW. (Axel Bender)
Solution:   Handle dash vs. underscore. (Ken Takata, Hirohito Higashi)
This commit is contained in:
Bram Moolenaar
2016-07-13 20:54:43 +02:00
parent 89b10421ca
commit 3e946fdc7b
2 changed files with 3 additions and 1 deletions

View File

@@ -149,7 +149,7 @@ WINDRES_CC = $(CC)
# Get the default ARCH.
ifndef ARCH
ARCH := $(shell $(CC) -dumpmachine | sed -e 's/-.*//')
ARCH := $(shell $(CC) -dumpmachine | sed -e 's/-.*//' -e 's/_/-/')
endif

View File

@@ -758,6 +758,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
2032,
/**/
2031,
/**/