diff options
author | rmax <rmax> | 2002-06-25 14:27:05 (GMT) |
---|---|---|
committer | rmax <rmax> | 2002-06-25 14:27:05 (GMT) |
commit | 34f767148b4bb7594082e532936d0ab590a82064 (patch) | |
tree | fc8afa5f367f074dd660e4e5d107401ab3bbda06 /unix/tcl.m4 | |
parent | 7ca07353686f0823109480f1f02842e4aa6491ae (diff) | |
download | tcl-34f767148b4bb7594082e532936d0ab590a82064.zip tcl-34f767148b4bb7594082e532936d0ab590a82064.tar.gz tcl-34f767148b4bb7594082e532936d0ab590a82064.tar.bz2 |
* unix/tcl.m4 (SC_PATH_TCLCONFIG): Replaced ${exec_prefix}/lib by
${libdir}.
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
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` \ |