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 -- [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/20230614141029.C53CD1C0CE4%40moolenaar.net.