From: Geoffrey Noer Date: Wed, 23 Apr 1997 00:21:55 +0000 (+0000) Subject: Tue Apr 22 17:17:28 1997 Geoffrey Noer X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6fa28e001e031ab23966a8f29db59f612d8dad08;p=binutils-gdb.git Tue Apr 22 17:17:28 1997 Geoffrey Noer * configure.in: if target is cygwin32 but host isn't cygwin32, don't configure gdb tcl tk expect, not just gdb. --- diff --git a/ChangeLog b/ChangeLog index 20b705b7fac..28bc2f825ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Apr 22 17:17:28 1997 Geoffrey Noer + + * 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 * configure.in: Added gnuserv everywhere sn appears. diff --git a/configure.in b/configure.in index 4ffbad666ab..fe371e709a7 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)