Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Nerode <neroden@gcc.gnu.org>2002-09-21 01:03:04 +0400
committerNathanael Nerode <neroden@gcc.gnu.org>2002-09-21 01:03:04 +0400
commit4ca88d4714eb5584f86bd0a0b9223edfb1d2dcc4 (patch)
treeb0267a80e347e4167ea489b0beac5fcfa83cf5d9
parent1525d127da1d0f5eb197805e6c8e0c27eda9d520 (diff)
2002-09-20 Nathanael Nerode <neroden@doctor.moo.mud.org>
* configure.in: Rearrange.
-rw-r--r--ChangeLog4
-rw-r--r--configure.in38
2 files changed, 23 insertions, 19 deletions
diff --git a/ChangeLog b/ChangeLog
index d7043ca7a..4d9cdf6c1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-09-20 Nathanael Nerode <neroden@doctor.moo.mud.org>
+
+ * configure.in: Rearrange.
+
2002-09-12 Nick Clifton <nickc@redhat.com>
* Import these changes from the config master repository:
diff --git a/configure.in b/configure.in
index a945dcb24..697e1094b 100644
--- a/configure.in
+++ b/configure.in
@@ -1127,25 +1127,6 @@ if test -n "${host_makefile_frag}" ; then
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"
@@ -1282,6 +1263,25 @@ case "${host}" in
;;
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:
# Make sure that the compiler is able to generate an executable. If it