diff options
author | Geoffrey Noer <noer@cygnus> | 1997-04-23 00:21:55 +0000 |
---|---|---|
committer | Geoffrey Noer <noer@cygnus> | 1997-04-23 00:21:55 +0000 |
commit | 6fa28e001e031ab23966a8f29db59f612d8dad08 (patch) | |
tree | 7c2bd343df57d501800c82239af17cfc72fc8370 | |
parent | 2c27ef78179ec90e4225bddb477f840b94f28e3e (diff) | |
download | gdb-6fa28e001e031ab23966a8f29db59f612d8dad08.zip gdb-6fa28e001e031ab23966a8f29db59f612d8dad08.tar.gz gdb-6fa28e001e031ab23966a8f29db59f612d8dad08.tar.bz2 |
Tue Apr 22 17:17:28 1997 Geoffrey Noer <noer@pizza.cygnus.com>
* configure.in: if target is cygwin32 but host isn't cygwin32,
don't configure gdb tcl tk expect, not just gdb.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Tue Apr 22 17:17:28 1997 Geoffrey Noer <noer@pizza.cygnus.com> + + * configure.in: if target is cygwin32 but host isn't cygwin32, + don't configure gdb tcl tk expect, not just gdb. + Mon Apr 21 13:33:39 1997 Tom Tromey <tromey@cygnus.com> * configure.in: Added gnuserv everywhere sn appears. diff --git a/configure.in b/configure.in index 4ffbad6..fe371e7 100644 --- a/configure.in +++ b/configure.in @@ -463,8 +463,8 @@ case "${target}" in # Can't build gdb for cygwin32 if not native. case "${host}" in - *-*-cygwin32) ;; # keep gdb - *) noconfigdirs="$noconfigdirs gdb" + *-*-cygwin32) ;; # keep gdb tcl tk expect + *) noconfigdirs="$noconfigdirs gdb tcl tk expect" esac ;; i[3456]86-*-pe) |