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 | |
parent | 8b3797aa18a91157c0aaa1012cf31e3d5ea025b7 (diff) | |
download | gdb-d55a826735387bd220612a7b6972d12185e40e4b.zip gdb-d55a826735387bd220612a7b6972d12185e40e4b.tar.gz gdb-d55a826735387bd220612a7b6972d12185e40e4b.tar.bz2 |
* configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 3 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Fri Sep 8 17:11:14 1995 J.T. Conklin <jtc@rtl.cygnus.com> + + * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*. + Fri Sep 8 16:46:29 1995 Ian Lance Taylor <ian@cygnus.com> * configure.in: Build ld in mips*-*-bsd* case. 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" ;; |