diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | unix/tcl.m4 | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,5 +1,10 @@ 2001-05-23 Mo DeJong <mdejong@redhat.com> + * unix/tcl.m4 (SC_PATH_TCLCONFIG): Fix comments, + and typo in cached variable name. + +2001-05-23 Mo DeJong <mdejong@redhat.com> + * unix/tcl.m4 (SC_LOAD_TKCONFIG): Remove use of undefined TCLCONFIG variable and call AC_MSG_RESULT to print the checking result. 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 |