Patch 9.0.0879
Problem: Unnecessary nesting in makefile.
Solution: Join "else" and "ifeq". (Ken Takata, closes #11547)
Files: src/Make_cyg_ming.mak
*** ../vim-9.0.0878/src/Make_cyg_ming.mak 2022-11-11 21:24:14.547283117
+0000
--- src/Make_cyg_ming.mak 2022-11-14 14:48:22.992414454 +0000
***************
*** 226,238 ****
endif
ifeq ($(UNDER_CYGWIN),yes)
WINDRES := $(CROSS_COMPILE)windres
! else
! ifeq ($(findstring clang,$(CC)),)
WINDRES := windres
else
WINDRES := llvm-windres
endif
- endif
# Get the default ARCH.
ifndef ARCH
--- 226,236 ----
endif
ifeq ($(UNDER_CYGWIN),yes)
WINDRES := $(CROSS_COMPILE)windres
! else ifeq ($(findstring clang,$(CC)),)
WINDRES := windres
else
WINDRES := llvm-windres
endif
# Get the default ARCH.
ifndef ARCH
*** ../vim-9.0.0878/src/version.c 2022-11-14 14:36:37.831695545 +0000
--- src/version.c 2022-11-14 14:49:45.100487337 +0000
***************
*** 697,698 ****
--- 697,700 ----
{ /* Add new patch number below this line */
+ /**/
+ 879,
/**/
--
Time is money. Especially if you make clocks.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20221114145045.B0C191C0473%40moolenaar.net.