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
|
||||
ifeq ($(UNDER_CYGWIN),yes)
|
||||
WINDRES := $(CROSS_COMPILE)windres
|
||||
else
|
||||
ifeq ($(findstring clang,$(CC)),)
|
||||
else ifeq ($(findstring clang,$(CC)),)
|
||||
WINDRES := windres
|
||||
else
|
||||
WINDRES := llvm-windres
|
||||
endif
|
||||
endif
|
||||
|
||||
# Get the default ARCH.
|
||||
ifndef ARCH
|
||||
|
@@ -695,6 +695,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
879,
|
||||
/**/
|
||||
878,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user