diff options
author | Jason Thorpe <thorpej@netbsd.org> | 2002-05-30 02:47:47 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@netbsd.org> | 2002-05-30 02:47:47 +0000 |
commit | a360218174a2fcd711d0417aaa30508b945bfcb7 (patch) | |
tree | 9831daa98458dfe3e02ec0bb3a9216f8850726be /configure.in | |
parent | ab68f3e06fff1c31798b1491b352a46790a30b60 (diff) | |
download | gdb-a360218174a2fcd711d0417aaa30508b945bfcb7.zip gdb-a360218174a2fcd711d0417aaa30508b945bfcb7.tar.gz gdb-a360218174a2fcd711d0417aaa30508b945bfcb7.tar.bz2 |
* configure.in (vax-*-netbsd*): Don't build gas for this
platform.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index b21918e..1c63934 100644 --- a/configure.in +++ b/configure.in @@ -633,6 +633,10 @@ case "${target}" in # Skip some stuff that's unsupported on some NetBSD configurations. case "${target}" in i*86-*-netbsdelf*) ;; + vax-*-netbsd*) + # gas is not yet supported on vax-netbsd. + noconfigdirs="gas $noconfigdirs ${libgcj}" + ;; *) noconfigdirs="$noconfigdirs ${libgcj}" ;; |