diff options
author | J.T. Conklin <jtc@acorntoolworks.com> | 1995-09-09 00:15:47 +0000 |
---|---|---|
committer | J.T. Conklin <jtc@acorntoolworks.com> | 1995-09-09 00:15:47 +0000 |
commit | d55a826735387bd220612a7b6972d12185e40e4b (patch) | |
tree | 54b213c6ae9b2df0a7b20c7fb60845bbcacdb66f /configure.in | |
parent | 8b3797aa18a91157c0aaa1012cf31e3d5ea025b7 (diff) | |
download | fsf-binutils-gdb-d55a826735387bd220612a7b6972d12185e40e4b.zip fsf-binutils-gdb-d55a826735387bd220612a7b6972d12185e40e4b.tar.gz fsf-binutils-gdb-d55a826735387bd220612a7b6972d12185e40e4b.tar.bz2 |
* configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 0925fd3..94a1b79b 100644 --- a/configure.in +++ b/configure.in @@ -435,6 +435,9 @@ case "${target}" in # a gcc built textutils will cause the linker to hang on 'join' noconfigdirs="$noconfigdirs gas ld binutils gprof textutils" ;; + m68k-*-netbsd*) + noconfigdirs="$noconfigdirs gdb" + ;; m68k-apollo-*) noconfigdirs="$noconfigdirs ld binutils gprof" ;; |