]> sourceware.org Git - glibc.git/commitdiff
Let non-add-on preconfigure scripts set libc_config_ok.
authorRoland McGrath <roland@hack.frob.com>
Thu, 9 Apr 2015 20:55:11 +0000 (13:55 -0700)
committerRoland McGrath <roland@hack.frob.com>
Thu, 9 Apr 2015 20:55:11 +0000 (13:55 -0700)
ChangeLog
configure
configure.ac

index 03fbb7e3117801be1ecfdca512e4d7a02d7a530c..193ea30083c0b45d2d947817a0e3286e0e1dbf1b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2015-04-09  Roland McGrath  <roland@hack.frob.com>
 
+       * configure.ac (libc_config_ok): Initialize before reading
+       preconfigure scripts, not after.
+       * configure: Regenerated.
+
        * test-skeleton.c (TIMEOUT): Move #define to top level.
        (main): Grok environment variable TEST_DIRECT.  If set, print
        test expectation details into that file and then behave as if
index 79864b716682ab0397f504afb5562529f5a1c707..97e549eef5493a0ec8125f8cf85377abfc0c5ee4 100755 (executable)
--- a/configure
+++ b/configure
@@ -3878,6 +3878,10 @@ if test "${with_cpu+set}" = set; then :
 fi
 
 
+# An preconfigure script can set this when it wants to disable the sanity
+# check below.
+libc_config_ok=no
+
 if frags=`ls -d $srcdir/sysdeps/*/preconfigure 2> /dev/null`
 then
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysdeps preconfigure fragments" >&5
@@ -3891,9 +3895,6 @@ $as_echo_n "checking for sysdeps preconfigure fragments... " >&6; }
 $as_echo "" >&6; }
 fi
 
-# An add-on can set this when it wants to disable the sanity check below.
-libc_config_ok=no
-
 subdirs="$subdirs "
 
 
index 39f3e86151de75359f814e69cfa81a079e6bec2a..def655ab8b804b8882117d48b35a0ba69853442a 100644 (file)
@@ -412,12 +412,13 @@ AC_ARG_WITH([cpu],
   esac
 ])
 
+# An preconfigure script can set this when it wants to disable the sanity
+# check below.
+libc_config_ok=no
+
 dnl Let sysdeps/*/preconfigure act here, like they can in add-ons.
 LIBC_PRECONFIGURE([$srcdir], [for sysdeps])
 
-# An add-on can set this when it wants to disable the sanity check below.
-libc_config_ok=no
-
 dnl Having this here, though empty, makes sure that if add-ons' fragments
 dnl do AC_CONFIG_SUBDIRS([some-dir]), which just sets $subdirs, then
 dnl our AC_OUTPUT will actually use it.
This page took 0.129039 seconds and 5 git commands to generate.