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:
@@ -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
|
||||
|
||||
|
||||
|
@@ -758,6 +758,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
2032,
|
||||
/**/
|
||||
2031,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user