diff options
author | Jason Thorpe <thorpej@wasabisystems.com> | 2002-05-30 02:53:32 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@gcc.gnu.org> | 2002-05-30 02:53:32 +0000 |
commit | dcf7f0ddac2a6ad699656099f93d319fd7f964b6 (patch) | |
tree | 5c8166e93e0970f1930717835f910cc665fe2da9 /configure.in | |
parent | 5549d65dfb54edf3736487328e88ec50cb3f4e15 (diff) | |
download | gcc-dcf7f0ddac2a6ad699656099f93d319fd7f964b6.zip gcc-dcf7f0ddac2a6ad699656099f93d319fd7f964b6.tar.gz gcc-dcf7f0ddac2a6ad699656099f93d319fd7f964b6.tar.bz2 |
configure.in (vax-*-netbsd*): Don't build gas for this platform.
* configure.in (vax-*-netbsd*): Don't build gas for this
platform.
From-SVN: r54040
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}" ;; |