diff options
author | Fred Fish <fnf@specifix.com> | 1995-07-30 01:15:54 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1995-07-30 01:15:54 +0000 |
commit | 7a13a704fe324c5457d4586f33eefcc85d5da7a4 (patch) | |
tree | 96b8b5508a0ae64f2b25309cfefd1a2dbb4ebe43 /gdb/configure.in | |
parent | fce537aeb2b60cdd20c2c66af37b714a92bc2708 (diff) | |
download | gdb-7a13a704fe324c5457d4586f33eefcc85d5da7a4.zip gdb-7a13a704fe324c5457d4586f33eefcc85d5da7a4.tar.gz gdb-7a13a704fe324c5457d4586f33eefcc85d5da7a4.tar.bz2 |
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.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index 3ae03bd..012e584 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -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) |