diff options
author | das <das> | 2007-04-30 22:57:39 (GMT) |
---|---|---|
committer | das <das> | 2007-04-30 22:57:39 (GMT) |
commit | 7eeb272ffcc4b50b35d956dc99f614cea2821e33 (patch) | |
tree | cfab23255ecb4a5e1321ee6c84696e06c6f98844 | |
parent | e6bca21403d2e89409a717703089889e4e2398ad (diff) | |
download | tcl-7eeb272ffcc4b50b35d956dc99f614cea2821e33.zip tcl-7eeb272ffcc4b50b35d956dc99f614cea2821e33.tar.gz tcl-7eeb272ffcc4b50b35d956dc99f614cea2821e33.tar.bz2 |
* unix/Makefile.in: add 'tclsh' dependency to install targets that rely
on tclsh, fixes parallel 'make install' from empty build dir.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | unix/Makefile.in | 12 |
2 files changed, 11 insertions, 6 deletions
@@ -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-30 Andreas Kupries <andreask@gactivestate.com> * generic/tclIO.c (FixLevelCode): Corrected reference count diff --git a/unix/Makefile.in b/unix/Makefile.in index 6622bfb..81653cf 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.206 2007/04/25 03:40:26 das Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.207 2007/04/30 22:57:40 das Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -810,14 +810,14 @@ install-libraries: libraries $(INSTALL_TZDATA) install-msgs $(SCRIPT_INSTALL_DIR)/tm.tcl; \ fi -install-tzdata: +install-tzdata: tclsh @echo "Installing time zone data" @@LD_LIBRARY_PATH_VAR@=`pwd`:$${@LD_LIBRARY_PATH_VAR@}; export @LD_LIBRARY_PATH_VAR@; \ TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \ ./tclsh $(TOOL_DIR)/installData.tcl \ $(TOP_DIR)/library/tzdata $(SCRIPT_INSTALL_DIR)/tzdata -install-msgs: +install-msgs: tclsh @echo "Installing message catalogs" @@LD_LIBRARY_PATH_VAR@=`pwd`:$${@LD_LIBRARY_PATH_VAR@}; export @LD_LIBRARY_PATH_VAR@; \ TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \ @@ -1751,13 +1751,13 @@ allpatch: dist # tk8.* up two directories from the 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@ |