configure.ac: Fix stupid brain-fade; set default_gnattools_target correctly.
authorNathanael Nerode <neroden@gcc.gnu.org>
Sun, 25 Apr 2004 21:29:37 +0000 (21:29 +0000)
committerNathanael Nerode <neroden@gcc.gnu.org>
Sun, 25 Apr 2004 21:29:37 +0000 (21:29 +0000)
* configure.ac: Fix stupid brain-fade; set default_gnattools_target
correctly.
* configure: Regenerate.

From-SVN: r81167

libada/ChangeLog
libada/configure
libada/configure.ac

index 796a3e4..02abac7 100644 (file)
@@ -1,5 +1,11 @@
 2004-04-19  Nathanael Nerode  <neroden@gcc.gnu.org>
 
+       * configure.ac: Fix stupid brain-fade; set default_gnattools_target
+       correctly.
+       * configure: Regenerate.
+
+2004-04-19  Nathanael Nerode  <neroden@gcc.gnu.org>
+
        * Makefile.in: Revert most of Arnaud's last change.  Prefer anything
        over error-prone Make abuse.  Remove temporary debug code.
        (gnatlib-zcx): New target.
index b5e1827..1d5e30d 100755 (executable)
@@ -1556,13 +1556,19 @@ if test $build = $target \
    && test ${enable_shared} = yes ; then
   # Note that build=target is almost certainly the wrong test; FIXME
   default_gnatlib_target="gnatlib-shared"
-  default_gnattools_target="gnattools-cross"
 else
   default_gnatlib_target="gnatlib-plain"
-  default_gnattools_target="gnattools-native"
 fi
 
 
+# Determine what to build for 'gnattools'
+if test $build = $target ; then
+  # Note that build=target is almost certainly the wrong test; FIXME
+  default_gnattools_target="gnattools-native"
+else
+  default_gnattools_target="gnattools-cross"
+fi
+
 
 # Output: create a Makefile.
           ac_config_files="$ac_config_files Makefile"
index eaa50b8..1b52698 100644 (file)
@@ -81,12 +81,18 @@ if test $build = $target \
    && test ${enable_shared} = yes ; then
   # Note that build=target is almost certainly the wrong test; FIXME
   default_gnatlib_target="gnatlib-shared"
-  default_gnattools_target="gnattools-cross"
 else
   default_gnatlib_target="gnatlib-plain"
-  default_gnattools_target="gnattools-native"
 fi
 AC_SUBST([default_gnatlib_target])
+
+# Determine what to build for 'gnattools'
+if test $build = $target ; then
+  # Note that build=target is almost certainly the wrong test; FIXME
+  default_gnattools_target="gnattools-native"
+else
+  default_gnattools_target="gnattools-cross"
+fi
 AC_SUBST([default_gnattools_target])
 
 # Output: create a Makefile.