Skip to content

Commit 8d687a7

Browse files
puremourningbrammool
authored andcommitted
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 vim#12536, closes vim#12526)
1 parent 9570703 commit 8d687a7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

+2-4
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,8 @@ all install uninstall tools config configure reconfig proto depend lint tags typ
4646
fi
4747
@# When the target is "clean" also clean for the indent and syntax tests.
4848
@if test "$@" = "clean" -o "$@" = "distclean" -o "$@" = "testclean"; then \
49-
cd runtime/indent && \
50-
$(MAKE) clean; \
51-
cd runtime/syntax && \
52-
$(MAKE) clean; \
49+
(cd runtime/indent && $(MAKE) clean); \
50+
(cd runtime/syntax && $(MAKE) clean); \
5351
fi
5452

5553
# Executable used for running the indent tests.

src/version.c

+2
Original file line numberDiff line numberDiff line change
@@ -695,6 +695,8 @@ static char *(features[]) =
695695

696696
static int included_patches[] =
697697
{ /* Add new patch number below this line */
698+
/**/
699+
1630,
698700
/**/
699701
1629,
700702
/**/

0 commit comments

Comments
 (0)