From: Jason Thorpe Date: Thu, 30 May 2002 02:53:32 +0000 (+0000) Subject: configure.in (vax-*-netbsd*): Don't build gas for this platform. X-Git-Tag: releases/gcc-3.3.0~4707 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dcf7f0ddac2a6ad699656099f93d319fd7f964b6;p=thirdparty%2Fgcc.git 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 --- diff --git a/ChangeLog b/ChangeLog index d3166ce7d6a5..32b0a1f97999 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 b21918e07d48..1c6393450435 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}" ;;