Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* toplevel configure.in: small rearrangement
@ 2002-09-20 13:19 Nathanael Nerode
  2002-09-20 13:45 ` DJ Delorie
  0 siblings, 1 reply; 2+ messages in thread
From: Nathanael Nerode @ 2002-09-20 13:19 UTC (permalink / raw)
  To: gcc-patches; +Cc: gdb-patches, binutils, dj

I'm back.

This moves one of the definitions of CC a bit lower; when I autoconfiscate, 
it's much easier if all the logic related to CC is as close as possible, and
also if all the fragment collection code is uninterrupted by other things.

Tested, no behavior changes.

2002-09-20  Nathanael Nerode

	* configure.in: Rearrange.


Index: configure.in
===================================================================
RCS file: /cvs/gcc/gcc/configure.in,v
retrieving revision 1.177
diff -u -3 -r1.177 configure.in
--- configure.in	19 Aug 2002 20:38:15 -0000	1.177
+++ configure.in	20 Sep 2002 20:10:30 -0000
@@ -1127,25 +1127,6 @@
   host_makefile_frag=mh-frag
 fi
 
-# If we aren't going to be using gcc, see if we can extract a definition
-# of CC from the fragment.
-# Actually, use the 'pre-extracted' version above.
-if test -z "${CC}" && test "${build}" = "${host}" ; then
-  IFS="${IFS= 	}"; save_ifs="$IFS"; IFS="${IFS}:"
-  found=
-  for dir in $PATH; do
-    test -z "$dir" && dir=.
-    if test -f $dir/gcc; then
-      found=yes
-      break
-    fi
-  done
-  IFS="$save_ifs"
-  if test -z "${found}" && test -n "${tentative_cc}" ; then
-    CC=$tentative_cc
-  fi
-fi
-
 case "${target}" in
   v810*)
     target_makefile_frag="config/mt-v810"
@@ -1281,6 +1262,25 @@
     withoptions="$withoptions -x-libraries=/usr/lib/pa20_64 -x-includes=/usr/X11R6/include"
     ;;
 esac
+
+# If we aren't going to be using gcc, see if we can extract a definition
+# of CC from the fragment.
+# Actually, use the 'pre-extracted' version above.
+if test -z "${CC}" && test "${build}" = "${host}" ; then
+  IFS="${IFS= 	}"; save_ifs="$IFS"; IFS="${IFS}:"
+  found=
+  for dir in $PATH; do
+    test -z "$dir" && dir=.
+    if test -f $dir/gcc; then
+      found=yes
+      break
+    fi
+  done
+  IFS="$save_ifs"
+  if test -z "${found}" && test -n "${tentative_cc}" ; then
+    CC=$tentative_cc
+  fi
+fi
 
 # post-target:
 


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2002-09-20 20:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-09-20 13:19 toplevel configure.in: small rearrangement Nathanael Nerode
2002-09-20 13:45 ` DJ Delorie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox