summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordas <das@noemail.net>2007-04-30 22:58:18 (GMT)
committerdas <das@noemail.net>2007-04-30 22:58:18 (GMT)
commit32738ae1743cc5ed4ec8bd07c7c645aae300fa13 (patch)
treece74e5efe9c5d8f90f340faddcbde8023950f7fa
parent2fddddfa2ec2a38ab4916bea10e8cec9fb4bd375 (diff)
downloadtcl-32738ae1743cc5ed4ec8bd07c7c645aae300fa13.zip
tcl-32738ae1743cc5ed4ec8bd07c7c645aae300fa13.tar.gz
tcl-32738ae1743cc5ed4ec8bd07c7c645aae300fa13.tar.bz2
* unix/Makefile.in: add 'tclsh' dependency to install targets that rely
on tclsh, fixes parallel 'make install' from empty build dir. FossilOrigin-Name: 4463be0ba6b7cf6f007f9bc69545e9888e8376f3
-rw-r--r--ChangeLog5
-rw-r--r--unix/Makefile.in8
2 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 7f31279..7c623c2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-04-30 Daniel Steffen <das@users.sourceforge.net>
+
+ * unix/Makefile.in: add 'tclsh' dependency to install targets that rely
+ on tclsh, fixes parallel 'make install' from empty build dir.
+
2007-04-29 Daniel Steffen <das@users.sourceforge.net>
* unix/tclUnixFCmd.c: add workaround for crashing bug in fts_open()
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 5004b54..53302fd 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -5,7 +5,7 @@
# "autoconf" program (constructs like "@foo@" will get replaced in the
# actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.121.2.19 2007/04/29 02:20:36 das Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.121.2.20 2007/04/30 22:58:18 das Exp $
VERSION = @TCL_VERSION@
MAJOR_VERSION = @TCL_MAJOR_VERSION@
@@ -1388,13 +1388,13 @@ allpatch: dist
# TOOL_DIR.
#
-html:
+html: tclsh
$(BUILD_HTML)
@EXTRA_BUILD_HTML@
-html-tcl:
+html-tcl: tclsh
$(BUILD_HTML) --tcl
@EXTRA_BUILD_HTML@
-html-tk:
+html-tk: tclsh
$(BUILD_HTML) --tk
@EXTRA_BUILD_HTML@