summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--Src/Makefile.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f8caab70a..c819c2d92 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2000-06-03 Bart Schaefer <schaefer@zsh.org>
+ * 11737: Src/Makefile.in: Remove modules.index and modules-bltin
+ during "make distclean" not "make clean" to prevent unnecessary
+ rebuilding of Makefiles in module subdirectories.
+
* 11736: Src/signals.c: Fix special scoping of TRAPEXIT.
* Felix: 11734: Src/Zle/compcore.c, Doc/Zsh/mod_complist.yo: Fix
diff --git a/Src/Makefile.in b/Src/Makefile.in
index bc6d29e10..e11440cd4 100644
--- a/Src/Makefile.in
+++ b/Src/Makefile.in
@@ -216,12 +216,12 @@ mostlyclean-here:
clean-here:
rm -f modules.index.tmp modules.stamp zsh$(EXEEXT) ansi2knr.o ansi2knr
- rm -f modules.index modules-bltin
rm -f libzsh-*.$(DL_EXT)
.PHONY: clean-here
distclean-here:
rm -f TAGS tags
+ rm -f modules.index modules-bltin
rm -f Makefile mymods.conf
.PHONY: distclean-here