To: vim_dev@googlegroups.com Subject: Patch 9.0.1630 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 9.0.1630 Problem: "make clean" at the toplevel fails. Solution: Clean the indent and syntax directories in a sub-shell. (Ben Jackson, closes #12536, closes #12526) Files: Makefile *** ../vim-9.0.1629/Makefile 2023-06-13 22:44:53.538988256 +0100 --- Makefile 2023-06-14 15:01:21.505716821 +0100 *************** *** 46,55 **** fi @# When the target is "clean" also clean for the indent and syntax tests. @if test "$@" = "clean" -o "$@" = "distclean" -o "$@" = "testclean"; then \ ! cd runtime/indent && \ ! $(MAKE) clean; \ ! cd runtime/syntax && \ ! $(MAKE) clean; \ fi # Executable used for running the indent tests. --- 46,53 ---- fi @# When the target is "clean" also clean for the indent and syntax tests. @if test "$@" = "clean" -o "$@" = "distclean" -o "$@" = "testclean"; then \ ! (cd runtime/indent && $(MAKE) clean); \ ! (cd runtime/syntax && $(MAKE) clean); \ fi # Executable used for running the indent tests. *** ../vim-9.0.1629/src/version.c 2023-06-14 13:10:09.803148193 +0100 --- src/version.c 2023-06-14 15:07:10.190914026 +0100 *************** *** 697,698 **** --- 697,700 ---- { /* Add new patch number below this line */ + /**/ + 1630, /**/ -- "Hit any key to continue" it said, but nothing happened after F sharp. /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// \\\ \\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///