This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.18-626-g9e8ac24


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  9e8ac24ba3cfeb782c5b24dde6224a3d2b4c4919 (commit)
      from  6f8e37ebf86a000f1571dd461b2635ab73f4c3ee (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=9e8ac24ba3cfeb782c5b24dde6224a3d2b4c4919

commit 9e8ac24ba3cfeb782c5b24dde6224a3d2b4c4919
Author: Allan McRae <allan@archlinux.org>
Date:   Mon Dec 16 21:45:27 2013 +1000

    Set AUTOCONF variable when maintainer-mode is not used
    
    Fixes build issue introduced in 8894bad3 when configure.ac is altered
    and maintainer-mode is not enabled.

diff --git a/ChangeLog b/ChangeLog
index 9ae2df3..7543682 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2013-12-16  Allan McRae  <allan@archlinux.org>
 
+	* configure.ac: Set AUTOCONF when maintainer-mode is not used.
+	* configure: Regenerated.
+
 	* sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update file name.
 
 	[BZ #14120]
diff --git a/configure b/configure
index 4f0cf57..fc023d0 100755
--- a/configure
+++ b/configure
@@ -5198,6 +5198,8 @@ $as_echo "$libc_cv_autoconf_works" >&6; }
   if test "x$AUTOCONF" = xno; then
     aux_missing="$aux_missing autoconf"
   fi
+else
+  AUTOCONF=no
 fi
 
 test -n "$critic_missing" && as_fn_error $? "
diff --git a/configure.ac b/configure.ac
index 662aaa5..f3dd87d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1028,6 +1028,8 @@ if test "x$maintainer" = "xyes"; then
   if test "x$AUTOCONF" = xno; then
     aux_missing="$aux_missing autoconf"
   fi
+else
+  AUTOCONF=no
 fi
 
 test -n "$critic_missing" && AC_MSG_ERROR([

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog    |    3 +++
 configure    |    2 ++
 configure.ac |    2 ++
 3 files changed, 7 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]