summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2007-09-04 18:35:21 (GMT)
committerdgp <dgp@users.sourceforge.net>2007-09-04 18:35:21 (GMT)
commit363b1496f3349d6c5e08660fdac3231970bb003a (patch)
tree36d99086efd92dfeac8fdd2d3c968651b1e3b8e8
parent3dcd08753c27584928c9a436994a06388befdd76 (diff)
downloadtcl-363b1496f3349d6c5e08660fdac3231970bb003a.zip
tcl-363b1496f3349d6c5e08660fdac3231970bb003a.tar.gz
tcl-363b1496f3349d6c5e08660fdac3231970bb003a.tar.bz2
* unix/Makefile.in: Corrections to `make dist` dependencies to be
sure that macosx/configure gets generated whenever it does not exist.
-rw-r--r--ChangeLog5
-rw-r--r--unix/Makefile.in8
2 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index fc6ad39..d8b810b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-09-04 Don Porter <dgp@users.sourceforge.net>
+
+ * unix/Makefile.in: Corrections to `make dist` dependencies to be
+ sure that macosx/configure gets generated whenever it does not exist.
+
2007-09-03 Kevin B, Kenny <kennykb@acm.org>
* library/tzdata/Africa/Cairo:
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 0cf823c..0f9be18 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -4,7 +4,7 @@
# "./configure", which is a configuration script generated by the "autoconf"
# program (constructs like "@foo@" will get replaced in the actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.212 2007/08/07 05:06:18 das Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.213 2007/09/04 18:35:21 dgp Exp $
VERSION = @TCL_VERSION@
MAJOR_VERSION = @TCL_MAJOR_VERSION@
@@ -1608,8 +1608,10 @@ DISTDIR = $(DISTROOT)/$(DISTNAME)
$(UNIX_DIR)/configure: $(UNIX_DIR)/configure.in $(UNIX_DIR)/tcl.m4
cd $(UNIX_DIR); autoconf
$(UNIX_DIR)/tclConfig.h.in: $(UNIX_DIR)/configure.in $(UNIX_DIR)/tcl.m4 \
- $(MAC_OSX_DIR)/configure.ac
- cd $(MAC_OSX_DIR); autoconf; autoheader; touch $@
+ $(MAC_OSX_DIR)/configure
+ cd $(MAC_OSX_DIR); autoheader; touch $@
+$(MAC_OSX_DIR)/configure: $(MAC_OSX_DIR)/configure.ac
+ cd $(MAC_OSX_DIR); autoconf
dist: $(UNIX_DIR)/configure $(UNIX_DIR)/tclConfig.h.in
rm -rf $(DISTDIR)