Fix problem with configure script when run on systems where native shell

is bash or ksh, which handles "... $(TCL) ..." by trying to run TCL.
Changed configure.in and regenerated configure, including two lines
apparently inserted by custom cygnus version of autoconf 2.4.
This commit is contained in:
Fred Fish
1995-07-30 01:15:54 +00:00
parent fce537aeb2
commit 7a13a704fe
2 changed files with 13 additions and 11 deletions

View File

@@ -52,7 +52,8 @@ if test "${enable_gdbtk}" = "yes"; then
CYGNUS_PATH_TCL
ENABLE_GDBTK=1
ENABLE_CLIBS="${ENABLE_CLIBS} $(TCL) $(TK) $(X11) -lm"
TCL_LIBS='$(TCL) $(TK) $(X11)'
ENABLE_CLIBS="${ENABLE_CLIBS} ${TCL_LIBS} -lm"
ENABLE_OBS="${ENABLE_OBS} gdbtk.o"
fi
AC_SUBST(ENABLE_GDBTK)