diff options
author | Michael Meissner <gnu@the-meissners.org> | 1996-02-16 00:53:00 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1996-02-16 00:53:00 +0000 |
commit | 44ccfc3c16310e983446cd3678402aa0e06ef79a (patch) | |
tree | 2cb6dd1bc82d3e1096d8e5c25500d58274a81b12 /configure.in | |
parent | 9fc3ba754eb530a0f8be01788fae79f7539222ce (diff) | |
download | gdb-44ccfc3c16310e983446cd3678402aa0e06ef79a.zip gdb-44ccfc3c16310e983446cd3678402aa0e06ef79a.tar.gz gdb-44ccfc3c16310e983446cd3678402aa0e06ef79a.tar.bz2 |
Do not build gdb if building native NT compilers on a UNIX host with a cross compiler
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 0d5cbb2..51513f9 100644 --- a/configure.in +++ b/configure.in @@ -408,8 +408,8 @@ case "${target}" in skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'` # Can't build gdb for cygwin32 if not native. - case "${host}" in - *-*-cygwin32) ;; # keep gdb + case "${host}:${build}" in + *-*-cygwin32 | *-*-cygwin32:*-*-cygwin32) ;; # keep gdb *) noconfigdirs="$noconfigdirs gdb" esac |