mirror of
https://github.com/vim/vim
synced 2025-07-16 01:01:58 +00:00
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)
This commit is contained in:
committed by
Bram Moolenaar
parent
95707037af
commit
8d687a7424
6
Makefile
6
Makefile
@ -46,10 +46,8 @@ all install uninstall tools config configure reconfig proto depend lint tags typ
|
|||||||
fi
|
fi
|
||||||
@# When the target is "clean" also clean for the indent and syntax tests.
|
@# When the target is "clean" also clean for the indent and syntax tests.
|
||||||
@if test "$@" = "clean" -o "$@" = "distclean" -o "$@" = "testclean"; then \
|
@if test "$@" = "clean" -o "$@" = "distclean" -o "$@" = "testclean"; then \
|
||||||
cd runtime/indent && \
|
(cd runtime/indent && $(MAKE) clean); \
|
||||||
$(MAKE) clean; \
|
(cd runtime/syntax && $(MAKE) clean); \
|
||||||
cd runtime/syntax && \
|
|
||||||
$(MAKE) clean; \
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Executable used for running the indent tests.
|
# Executable used for running the indent tests.
|
||||||
|
@ -695,6 +695,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1630,
|
||||||
/**/
|
/**/
|
||||||
1629,
|
1629,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user