summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2010-02-19 15:02:53 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2010-02-19 15:02:53 (GMT)
commitd6cc0803308fcf0d43bb076c1fc9bd6df1f322d3 (patch)
tree0459397e13cd32ca8a0af746b91fe61c9dbd3cc5 /unix
parent98179c2eb0bc81ab39b0b65d730bccbba5f07fd4 (diff)
downloadtk-d6cc0803308fcf0d43bb076c1fc9bd6df1f322d3.zip
tk-d6cc0803308fcf0d43bb076c1fc9bd6df1f322d3.tar.gz
tk-d6cc0803308fcf0d43bb076c1fc9bd6df1f322d3.tar.bz2
Fix [Bug 2415437] with supplied patch. LIB_RUNTIME_DIR now not forced to be
the same as $libdir.
Diffstat (limited to 'unix')
-rw-r--r--unix/Makefile.in4
-rw-r--r--unix/configure.in5
2 files changed, 5 insertions, 4 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index bc9fbf0..9d4d795 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.165 2009/12/23 07:16:52 nijtmans Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.166 2010/02/19 15:02:54 dkf Exp $
# Current Tk version; used in various names.
@@ -52,7 +52,7 @@ INSTALL_ROOT = $(DESTDIR)
TK_LIBRARY = @TK_LIBRARY@
# Path to use at runtime to refer to LIB_INSTALL_DIR:
-LIB_RUNTIME_DIR = $(libdir)
+LIB_RUNTIME_DIR = @LIB_RUNTIME_DIR@
# Directory in which to install the program wish:
BIN_INSTALL_DIR = $(INSTALL_ROOT)$(bindir)
diff --git a/unix/configure.in b/unix/configure.in
index 2d41391..d644ac1 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run during Tk installation
dnl to configure the system for the local environment.
#
-# RCS: @(#) $Id: configure.in,v 1.168 2009/08/24 00:57:20 das Exp $
+# RCS: @(#) $Id: configure.in,v 1.169 2010/02/19 15:02:54 dkf Exp $
AC_INIT([tk],[8.6])
AC_PREREQ(2.59)
@@ -149,7 +149,7 @@ AC_C_BIGENDIAN
# search path to reflect this.
#------------------------------------------------------------------------
-LIB_RUNTIME_DIR='${LIB_RUNTIME_DIR}'
+LIB_RUNTIME_DIR='$(libdir)'
if test "$TCL_EXEC_PREFIX" != "$exec_prefix"; then
LIB_RUNTIME_DIR="${LIB_RUNTIME_DIR}:${TCL_EXEC_PREFIX}/lib"
@@ -817,6 +817,7 @@ AC_SUBST(LOCALES)
AC_SUBST(TK_WINDOWINGSYSTEM)
AC_SUBST(TK_PKG_DIR)
AC_SUBST(TK_LIBRARY)
+AC_SUBST(LIB_RUNTIME_DIR)
AC_SUBST(PRIVATE_INCLUDE_DIR)
AC_SUBST(HTML_DIR)