diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-11-16 20:43:36 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-11-16 20:43:36 +0000 |
commit | becf2d8abc7b70d90007c04f489b84ed789c7a83 (patch) | |
tree | 94e74fa7f054610b59d63db87022ecb9d146081c /configure.in | |
parent | 6e03b2b87e83ccc6322a6dd2cc135023041de194 (diff) | |
download | gdb-becf2d8abc7b70d90007c04f489b84ed789c7a83.zip gdb-becf2d8abc7b70d90007c04f489b84ed789c7a83.tar.gz gdb-becf2d8abc7b70d90007c04f489b84ed789c7a83.tar.bz2 |
* config.guess: Recognize Apollos (using environment variables).
* configure.in: Don't configure ld, binutils, or gprof for Apollo.
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 8de67d7..8bfe331 100644 --- a/configure.in +++ b/configure.in @@ -223,6 +223,9 @@ case "${target}" in # a gcc built textutils will cause the linker to hang on 'join' noconfigdirs="$noconfigdirs ld binutils gas gprof textutils" ;; + m68k-apollo-*) + noconfigdirs="$noconfigdirs ld binutils gprof" + ;; mips-*-*) noconfigdirs="$noconfigdirs gprof" ;; |