diff options
author | rmax <rmax> | 2002-06-25 14:39:06 (GMT) |
---|---|---|
committer | rmax <rmax> | 2002-06-25 14:39:06 (GMT) |
commit | a1029eca20b3f375f41951ad30d6da3946d141bf (patch) | |
tree | cb10c8b86f0c8a56e772660022860ce1f7cf1250 /unix | |
parent | 16219242ada4cc67e878fa836fc71841c9fb8c94 (diff) | |
download | tk-a1029eca20b3f375f41951ad30d6da3946d141bf.zip tk-a1029eca20b3f375f41951ad30d6da3946d141bf.tar.gz tk-a1029eca20b3f375f41951ad30d6da3946d141bf.tar.bz2 |
* unix/configure: Replaced ${exec_prefix}/lib
* unix/tcl.m4 (SC_PATH_TCLCONFIG): by ${libdir}.
Diffstat (limited to 'unix')
-rwxr-xr-x | unix/configure | 2 | ||||
-rw-r--r-- | unix/tcl.m4 | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/unix/configure b/unix/configure index 67201fb..e0a6eb4 100755 --- a/unix/configure +++ b/unix/configure @@ -1646,7 +1646,7 @@ else # 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` \ diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 0ece801..a146632 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` \ |