# HG changeset patch # User Bram Moolenaar # Date 1668438005 -3600 # Node ID bbd5549acced1225b41edd20d9112b99a031e59e # Parent c7c9ec57cd55eada2bf1347969c15908abd11583 patch 9.0.0879: unnecessary nesting in makefile Commit: https://github.com/vim/vim/commit/dcbdd82d059a9b621e09f4447446a92ae2562e16 Author: K.Takata Date: Mon Nov 14 14:50:15 2022 +0000 patch 9.0.0879: unnecessary nesting in makefile Problem: Unnecessary nesting in makefile. Solution: Join "else" and "ifeq". (Ken Takata, closes https://github.com/vim/vim/issues/11547) diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak --- a/src/Make_cyg_ming.mak +++ b/src/Make_cyg_ming.mak @@ -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 diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 879, +/**/ 878, /**/ 877,