# HG changeset patch # User Bram Moolenaar # Date 1686752103 -7200 # Node ID 015cfc6bba2a914ed5a6ecf71aed786a0c77f8d7 # Parent 1f51b1180d873bcbdd67a2ca41a2042e04e31fe7 patch 9.0.1630: "make clean" at the toplevel fails Commit: https://github.com/vim/vim/commit/8d687a7424b33b7ad7f6778b0c5d092a44f4bc3a Author: Ben Jackson Date: Wed Jun 14 15:10:02 2023 +0100 patch 9.0.1630: "make clean" at the toplevel fails Problem: "make clean" at the toplevel fails. Solution: Clean the indent and syntax directories in a sub-shell. (Ben Jackson, closes #12536, closes #12526) diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -46,10 +46,8 @@ all install uninstall tools config confi 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; \ + (cd runtime/indent && $(MAKE) clean); \ + (cd runtime/syntax && $(MAKE) clean); \ fi # Executable used for running the indent tests. 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 */ /**/ + 1630, +/**/ 1629, /**/ 1628,