diff options
author | dgp <dgp@users.sourceforge.net> | 2007-09-04 18:35:21 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-09-04 18:35:21 (GMT) |
commit | 363b1496f3349d6c5e08660fdac3231970bb003a (patch) | |
tree | 36d99086efd92dfeac8fdd2d3c968651b1e3b8e8 /unix | |
parent | 3dcd08753c27584928c9a436994a06388befdd76 (diff) | |
download | tcl-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.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 8 |
1 files changed, 5 insertions, 3 deletions
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) |