diff options
-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` \ |