diff options
author | rmax <rmax> | 2006-10-19 22:36:50 (GMT) |
---|---|---|
committer | rmax <rmax> | 2006-10-19 22:36:50 (GMT) |
commit | 1554e780138bd026f0de6b5b0ed5144eb397a3c1 (patch) | |
tree | e4f59c9163935dac31066727926a0708efe9e4ba /unix/Makefile.in | |
parent | 3d6b94a43ec0c0bcc68f8c310620c7e9531650de (diff) | |
download | tcl-1554e780138bd026f0de6b5b0ed5144eb397a3c1.zip tcl-1554e780138bd026f0de6b5b0ed5144eb397a3c1.tar.gz tcl-1554e780138bd026f0de6b5b0ed5144eb397a3c1.tar.bz2 |
* unix/configure.in: Added autodetection for OS-supplied timezone
* unix/Makefile.in: files and configure switches to override the
* unix/configure: detected default.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 991a7cf..8147542 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.193 2006/10/16 15:22:06 dgp Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.194 2006/10/19 22:36:51 rmax Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -259,6 +259,10 @@ CC = @CC@ # should be installed (symlinks, compression, package name suffix). MAN_FLAGS = @MAN_FLAGS@ +# If non-empty, install the timezone files that are included with Tcl, +# otherwise use the ones that ship with the OS. +INSTALL_TZDATA = @INSTALL_TZDATA@ + #---------------------------------------------------------------- # The information below is usually usable as is. The configure # script won't modify it and it only exists to make working @@ -750,7 +754,7 @@ install-binaries: binaries fi @EXTRA_INSTALL_BINARIES@ -install-libraries: libraries install-tzdata install-msgs +install-libraries: libraries $(INSTALL_TZDATA) install-msgs @for i in $(INCLUDE_INSTALL_DIR) $(SCRIPT_INSTALL_DIR); \ do \ if [ ! -d $$i ] ; then \ |