diff options
| author | rmax <rmax> | 2002-06-25 14:27:05 (GMT) |
|---|---|---|
| committer | rmax <rmax> | 2002-06-25 14:27:05 (GMT) |
| commit | c9883263af5ee80ac22673afdb88ea6cb2115b13 (patch) | |
| tree | fc8afa5f367f074dd660e4e5d107401ab3bbda06 | |
| parent | 91627c9ed22d75b71994edf64fd89a694f66facd (diff) | |
| download | tcl-c9883263af5ee80ac22673afdb88ea6cb2115b13.zip tcl-c9883263af5ee80ac22673afdb88ea6cb2115b13.tar.gz tcl-c9883263af5ee80ac22673afdb88ea6cb2115b13.tar.bz2 | |
* unix/tcl.m4 (SC_PATH_TCLCONFIG): Replaced ${exec_prefix}/lib by
${libdir}.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | unix/tcl.m4 | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2002-06-25 Reinhard Max <max@suse.de> + + * unix/tcl.m4 (SC_PATH_TCLCONFIG): Replaced ${exec_prefix}/lib by + ${libdir}. + 2002-06-25 Donal K. Fellows <fellowsd@cs.man.ac.uk> * generic/tclUtil.c (TclGetIntForIndex): Fix of critical bug diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 9e70daf..f9ee925 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -58,7 +58,7 @@ AC_DEFUN(SC_PATH_TCLCONFIG, [ # check in a few common install locations if test x"${ac_cv_c_tclconfig}" = x ; then - for i in `ls -d ${exec_prefix}/lib 2>/dev/null` \ + for i in `ls -d ${libdir} 2>/dev/null` \ `ls -d /usr/local/lib 2>/dev/null` \ `ls -d /usr/contrib/lib 2>/dev/null` \ `ls -d /usr/lib 2>/dev/null` \ @@ -153,7 +153,7 @@ AC_DEFUN(SC_PATH_TKCONFIG, [ fi # check in a few common install locations if test x"${ac_cv_c_tkconfig}" = x ; then - for i in `ls -d ${exec_prefix}/lib 2>/dev/null` \ + for i in `ls -d ${libdir} 2>/dev/null` \ `ls -d /usr/local/lib 2>/dev/null` \ `ls -d /usr/contrib/lib 2>/dev/null` \ `ls -d /usr/lib 2>/dev/null` \ |
