about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--Config/config.mk6
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8239d390b..df83a72b9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-05-10  Bart Schaefer  <schaefer@zsh.org>
+
+	* 11312: Config/config.mk: defs.mk depends on config.status.
+
 2000-05-10  Tanaka Akira  <akr@zsh.org>
 
 	* 11309, 11310: Doc/Zsh/expn.yo: fix missing section.
diff --git a/Config/config.mk b/Config/config.mk
index dd91476d0..8e5c59c88 100644
--- a/Config/config.mk
+++ b/Config/config.mk
@@ -25,7 +25,7 @@
 #
 
 config: Makefile
-	@subdir='$(SUBDIRS)'; for subdir in $$subdirs; do \
+	@subdirs='$(SUBDIRS)'; for subdir in $$subdirs; do \
 	  (cd $$subdir && $(MAKE) $(MAKEDEFS) $@) || exit 1; \
 	done
 
@@ -36,3 +36,7 @@ $(dir_top)/Config/defs.mk $(dir_top)/Config/version.mk
 Makefile: Makefile.in $(dir_top)/config.status $(CONFIG_INCS)
 	cd $(dir_top) && \
 	  CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
+
+$(dir_top)/Config/defs.mk: $(sdir_top)/Config/defs.mk.in $(dir_top)/config.status
+	cd $(dir_top) && \
+	  CONFIG_FILES=Config/defs.mk CONFIG_HEADERS= ./config.status