diff options
author | mdejong <mdejong> | 2001-05-23 20:51:47 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-05-23 20:51:47 (GMT) |
commit | 8e04b5c9106ee131b80673254e3c9a989cdd78b9 (patch) | |
tree | 082bd197957957b85a0960012a63b9c4494ee60e /unix | |
parent | 803d881f22485c289ee46e588144e1bbb5f43367 (diff) | |
download | tcl-8e04b5c9106ee131b80673254e3c9a989cdd78b9.zip tcl-8e04b5c9106ee131b80673254e3c9a989cdd78b9.tar.gz tcl-8e04b5c9106ee131b80673254e3c9a989cdd78b9.tar.bz2 |
* unix/tcl.m4 (SC_PATH_TCLCONFIG): Fix comments,
and typo in cached variable name.
Diffstat (limited to 'unix')
-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 908b6ab..487bed8 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -31,7 +31,7 @@ AC_DEFUN(SC_PATH_TCLCONFIG, [ AC_MSG_CHECKING([for Tcl configuration]) AC_CACHE_VAL(ac_cv_c_tclconfig,[ - # First check to see if --with-tclconfig was specified. + # First check to see if --with-tcl was specified. if test x"${with_tclconfig}" != x ; then if test -f "${with_tclconfig}/tclConfig.sh" ; then ac_cv_c_tclconfig=`(cd ${with_tclconfig}; pwd)` @@ -71,7 +71,7 @@ AC_DEFUN(SC_PATH_TCLCONFIG, [ fi # check in a few other private locations - if test x"${ac_cv_c_tcliconfig}" = x ; then + if test x"${ac_cv_c_tclconfig}" = x ; then for i in \ ${srcdir}/../tcl \ `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]]* 2>/dev/null` ; do |