# HG changeset patch # User Elliott Sales de Andrade # Date 1268025483 0 # Node ID 6eaee00ab0fbc79ffb68cc990d25c1f1b0d86852 # Parent 170a3bcc11b9cfeadfa0e05b04d588faeb002cf8 Stop looking for tcl/tkConfig.sh after the first result, since I think it wouldn't use what directory the user specified the way it is. diff -r 170a3bcc11b9 -r 6eaee00ab0fb configure.ac --- a/configure.ac Mon Mar 08 05:11:06 2010 +0000 +++ b/configure.ac Mon Mar 08 05:18:03 2010 +0000 @@ -2142,6 +2142,7 @@ if test -f $dir/tclConfig.sh; then TCLCONFIG=$dir/tclConfig.sh AC_MSG_RESULT([yes ($TCLCONFIG)]) + break fi done if test "$TCLCONFIG" = "no"; then @@ -2212,6 +2213,7 @@ if test -f $dir/tkConfig.sh; then TKCONFIG=$dir/tkConfig.sh AC_MSG_RESULT([yes ($TKCONFIG)]) + break fi done if test "$TKCONFIG" = "no"; then