diff options
author | Jason Thorpe <thorpej@wasabisystems.com> | 2002-05-30 02:47:47 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@wasabisystems.com> | 2002-05-30 02:47:47 +0000 |
commit | 8fde429ae6b9dab07460110723e695746a67dcec (patch) | |
tree | 90d68532e8c9f002619e3ca7b73ae9d8f16a285d /configure.in | |
parent | 0dc5d498a09f70c30d8b5b5e843585464dcbb79b (diff) | |
download | newlib-8fde429ae6b9dab07460110723e695746a67dcec.zip newlib-8fde429ae6b9dab07460110723e695746a67dcec.tar.gz newlib-8fde429ae6b9dab07460110723e695746a67dcec.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}" ;; |