diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2005-06-02 19:54:19 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2005-06-02 19:54:19 +0000 |
commit | 79dd769c9c1e72d83a16524f1cf87ce187a2e61c (patch) | |
tree | 7485a68c30a3005867a3d39b3ecebcc7e4fdd100 | |
parent | d9dfec3ffa4d1af07c38474b5bc84bece27e82ba (diff) | |
download | gcc-79dd769c9c1e72d83a16524f1cf87ce187a2e61c.zip gcc-79dd769c9c1e72d83a16524f1cf87ce187a2e61c.tar.gz gcc-79dd769c9c1e72d83a16524f1cf87ce187a2e61c.tar.bz2 |
configure.in: Set noconfigdirs for ms1.
* configure.in: Set noconfigdirs for ms1.
* configure: Regenerate.
Co-Authored-By: Michael Snyder <msnyder@redhat.com>
Co-Authored-By: Stan Cox <scox@redhat.com>
From-SVN: r100509
-rw-r--r-- | ChangeLog | 8 | ||||
-rwxr-xr-x | configure | 3 | ||||
-rw-r--r-- | configure.in | 3 |
3 files changed, 14 insertions, 0 deletions
@@ -1,3 +1,11 @@ +2005-06-02 Aldy Hernandez <aldyh@redhat.com> + Michael Snyder <msnyder@redhat.com> + Stan Cox <scox@redhat.com> + + * configure.in: Set noconfigdirs for ms1. + + * configure: Regenerate. + 2005-06-01 Jerry DeLisle <jvdelisle@verizon.net> * MAINTAINERS (Write After Approval): Add self. @@ -1430,6 +1430,9 @@ case "${target}" in mn10300-*-*) noconfigdirs="$noconfigdirs ${libgcj}" ;; + ms1-*-*) + noconfigdirs="$noconfigdirs sim" + ;; powerpc-*-aix*) # copied from rs6000-*-* entry noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}" diff --git a/configure.in b/configure.in index c2ced91..7e2f52a 100644 --- a/configure.in +++ b/configure.in @@ -647,6 +647,9 @@ case "${target}" in mn10300-*-*) noconfigdirs="$noconfigdirs ${libgcj}" ;; + ms1-*-*) + noconfigdirs="$noconfigdirs sim" + ;; powerpc-*-aix*) # copied from rs6000-*-* entry noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}" |