* objs-gcc.sh: On (non-linux) native hosts, use 'make bootstrap'.
authorGeoffrey Keating <geoffk@apple.com>
Wed, 9 Oct 2002 21:00:54 +0000 (21:00 +0000)
committerGeoffrey Keating <geoffk@gcc.gnu.org>
Wed, 9 Oct 2002 21:00:54 +0000 (21:00 +0000)
From-SVN: r57993

contrib/regression/ChangeLog
contrib/regression/objs-gcc.sh

index e5239c5a8f95d86c51aba9165f51e68e0c7d52da..a32bf85654ee4038155bbc27adf99d3875420630 100644 (file)
@@ -1,3 +1,7 @@
+2002-10-09  Geoffrey Keating  <geoffk@apple.com>
+
+       * objs-gcc.sh: On (non-linux) native hosts, use 'make bootstrap'.
+
 2002-03-09  Geoffrey Keating  <geoffk@redhat.com>
 
        * btest-gcc.sh: For crosses, assume newlib and GNU binutils.
index 839fcffb6124a415cc7387c889428a6ab7e627d9..5171b2ef775f35be50745af0ff6b2abb9e9a0634 100755 (executable)
@@ -104,6 +104,9 @@ if [ $H_REAL_TARGET = $H_REAL_HOST -a $H_REAL_TARGET = i686-pc-linux-gnu ]
  then
   make all-gdb all-dejagnu all-ld || exit 1
   make install-gdb install-dejagnu install-ld || exit 1
+elif [ $H_REAL_TARGET = $H_REAL_HOST ] ; then
+  make bootstrap || exit 1
+  make install || exit 1
 else
   make || exit 1
   make install || exit 1