From 8fde429ae6b9dab07460110723e695746a67dcec Mon Sep 17 00:00:00 2001 From: Jason Thorpe Date: Thu, 30 May 2002 02:47:47 +0000 Subject: [PATCH] * configure.in (vax-*-netbsd*): Don't build gas for this platform. --- ChangeLog | 5 +++++ configure.in | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 0969e9c1c..81f3b04e0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-05-29 Jason Thorpe + + * configure.in (vax-*-netbsd*): Don't build gas for this + platform. + 2002-05-28 Marek Michalkiewicz * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx diff --git a/configure.in b/configure.in index b21918e07..1c6393450 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}" ;;