diff options
author | wart <wart> | 1999-06-22 18:57:23 (GMT) |
---|---|---|
committer | wart <wart> | 1999-06-22 18:57:23 (GMT) |
commit | 3497f9531e33550bfb1cec92c30b535497e86289 (patch) | |
tree | 91914edb8af0b4f99cea4ba27f4105441c5198a2 | |
parent | 600a32065c8c3e480970f32fb7b753a5b94a084d (diff) | |
download | tcl-3497f9531e33550bfb1cec92c30b535497e86289.zip tcl-3497f9531e33550bfb1cec92c30b535497e86289.tar.gz tcl-3497f9531e33550bfb1cec92c30b535497e86289.tar.bz2 |
One more try at fixing the TCL_LIBRARY problem
-rw-r--r-- | unix/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 9ebcb2c..ea59fe6 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.33 1999/06/22 18:51:00 wart Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.34 1999/06/22 18:57:23 wart Exp $ VERSION = @TCL_VERSION@ @@ -32,7 +32,7 @@ exec_prefix = @exec_prefix@ # when installing files. INSTALL_ROOT = -TCL_LIBRARY = tcl$(VERSION) +TCL_LIBRARY = $(prefix)/lib/tcl$(VERSION) # Path to use at runtime to refer to LIB_INSTALL_DIR: LIB_RUNTIME_DIR = $(exec_prefix)/lib @@ -43,7 +43,8 @@ BIN_INSTALL_DIR = $(INSTALL_ROOT)$(exec_prefix)/bin # Directory in which to install libtcl.so or libtcl.a: LIB_INSTALL_DIR = $(INSTALL_ROOT)$(exec_prefix)/lib -# Path name to use when installing library scripts: +# Path name to use when installing library scripts. Don't +# include $(prefix) here since it's already part of $(TCL_LIBRARY) SCRIPT_INSTALL_DIR = $(INSTALL_ROOT)$(TCL_LIBRARY) # Directory in which to install the include file tcl.h: |