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-21-g8c12f01


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  8c12f01d07fd6a0eea9f012b5547abc6b0fc8b91 (commit)
      from  8fe89494e6516048759425ec30d8878a6233e00f (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=8c12f01d07fd6a0eea9f012b5547abc6b0fc8b91

commit 8c12f01d07fd6a0eea9f012b5547abc6b0fc8b91
Author: Mike Frysinger <vapier@gentoo.org>
Date:   Sun Aug 25 16:01:52 2013 -0400

    configure: add missing quotes in $build_pt_chown test
    
    Signed-off-by: Mike Frysinger <vapier@gentoo.org>

diff --git a/ChangeLog b/ChangeLog
index 42373ad..de2f3cc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-08-25  Mike Frysinger  <vapier@gentoo.org>
+
+	* configure.ac: Quote $build_pt_chown test.
+	* configure: Regenerated.
+
 2013-08-23  Joseph Myers  <joseph@codesourcery.com>
 
 	[BZ #15532]
diff --git a/configure b/configure
index 1ee4c42..afe7821 100755
--- a/configure
+++ b/configure
@@ -3722,7 +3722,7 @@ else
 fi
 
 
-if test $build_pt_chown = yes; then
+if test "$build_pt_chown" = yes; then
   $as_echo "#define HAVE_PT_CHOWN 1" >>confdefs.h
 
 fi
diff --git a/configure.in b/configure.in
index 769e8ef..9172ad1 100644
--- a/configure.in
+++ b/configure.in
@@ -359,7 +359,7 @@ AC_ARG_ENABLE([pt_chown],
 	      [build_pt_chown=$enableval],
 	      [build_pt_chown=no])
 AC_SUBST(build_pt_chown)
-if test $build_pt_chown = yes; then
+if test "$build_pt_chown" = yes; then
   AC_DEFINE(HAVE_PT_CHOWN)
 fi
 

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

Summary of changes:
 ChangeLog    |    5 +++++
 configure    |    2 +-
 configure.in |    2 +-
 3 files changed, 7 insertions(+), 2 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]