Skip to content

Commit df2524b

Browse files
committed
patch 8.2.1495: "make clean" may delete too many files
Problem: "make clean" may delete too many files. Solution: Do not delete $APPDIR. (closes #6751)
1 parent 825b544 commit df2524b

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2910,8 +2910,7 @@ clean celan: testclean
29102910
-rm -f testdir/opt_test.vim
29112911
-rm -f $(UNITTEST_TARGETS)
29122912
-rm -f runtime pixmaps
2913-
-rm -rf $(APPDIR)
2914-
-rm -rf mzscheme_base.c
2913+
-rm -f mzscheme_base.c
29152914
-rm -rf libvterm/.libs libterm/t/.libs libvterm/src/*.o libvterm/src/*.lo libvterm/t/*.o libvterm/t/*.lo libvterm/t/harness libvterm/libvterm.la
29162915
if test -d $(PODIR); then \
29172916
cd $(PODIR); $(MAKE) prefix=$(DESTDIR)$(prefix) clean; \

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,8 @@ static char *(features[]) =
754754

755755
static int included_patches[] =
756756
{ /* Add new patch number below this line */
757+
/**/
758+
1495,
757759
/**/
758760
1494,
759761
/**/

0 commit comments

Comments
 (0)