From: Eygene Ryabinkin Date: Thu, 29 Mar 2007 10:06:48 +0000 (+0400) Subject: Eliminate checks of user-specified Tcl/Tk interpreter. X-Git-Tag: v1.5.2-rc0~97^2~1 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/68daee085cef975c76d9eeba91a3836cf88bcc3f?ds=sidebyside;hp=6bdb18a9cef9124937941c6e5bd2b645c9da6537 Eliminate checks of user-specified Tcl/Tk interpreter. Do not make the checks on the Tcl/Tk interpreter passed by '--with-tcltk=/path/to/wish' configure option: user is free to pass anything. Signed-off-by: Eygene Ryabinkin Signed-off-by: Junio C Hamano --- diff --git a/configure.ac b/configure.ac index 01fa0f0bda..50d2b85ace 100644 --- a/configure.ac +++ b/configure.ac @@ -102,12 +102,10 @@ if test -z "$NO_TCLTK"; then elif test "$with_tcltk" = "yes"; then # Tcl/Tk check requested. AC_CHECK_PROGS(TCLTK_PATH, [wish], ) - elif test -x "$with_tcltk"; then + else AC_MSG_RESULT([Using Tcl/Tk interpreter $with_tcltk]) TCLTK_PATH="$with_tcltk" AC_SUBST(TCLTK_PATH) - else - AC_MSG_ERROR([Tcl/Tk interpreter was not found in $with_tcltk]) fi fi