1
0
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:
K.Takata
2022-11-14 14:50:15 +00:00
committed by Bram Moolenaar
parent b298fe6cba
commit dcbdd82d05
2 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -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,
/**/ /**/