forked from aniani/vim
patch 9.0.0879: unnecessary nesting in makefile
Problem: Unnecessary nesting in makefile. Solution: Join "else" and "ifeq". (Ken Takata, closes #11547)
This commit is contained in:
@@ -226,13 +226,11 @@ CXX := $(CROSS_COMPILE)g++
|
|||||||
endif
|
endif
|
||||||
ifeq ($(UNDER_CYGWIN),yes)
|
ifeq ($(UNDER_CYGWIN),yes)
|
||||||
WINDRES := $(CROSS_COMPILE)windres
|
WINDRES := $(CROSS_COMPILE)windres
|
||||||
else
|
else ifeq ($(findstring clang,$(CC)),)
|
||||||
ifeq ($(findstring clang,$(CC)),)
|
|
||||||
WINDRES := windres
|
WINDRES := windres
|
||||||
else
|
else
|
||||||
WINDRES := llvm-windres
|
WINDRES := llvm-windres
|
||||||
endif
|
endif
|
||||||
endif
|
|
||||||
|
|
||||||
# Get the default ARCH.
|
# Get the default ARCH.
|
||||||
ifndef ARCH
|
ifndef ARCH
|
||||||
|
@@ -695,6 +695,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
879,
|
||||||
/**/
|
/**/
|
||||||
878,
|
878,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user