This is the mail archive of the
glibc-cvs@sourceware.org
mailing list for the glibc project.
GNU C Library master sources branch, master, updated. glibc-2.13-210-gf7d82dc
- From: drepper at sourceware dot org
- To: glibc-cvs at sourceware dot org
- Date: 21 May 2011 12:00:30 -0000
- Subject: GNU C Library master sources branch, master, updated. glibc-2.13-210-gf7d82dc
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 f7d82dc9e0b812c30ed1935190cda11a171b1438 (commit)
from cc9e536dac7171fa62b73700a01495cc6b269560 (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=f7d82dc9e0b812c30ed1935190cda11a171b1438
commit f7d82dc9e0b812c30ed1935190cda11a171b1438
Author: Ulrich Drepper <drepper@gmail.com>
Date: Sat May 21 08:00:14 2011 -0400
Fix configure visibility tests
diff --git a/ChangeLog b/ChangeLog
index 7a91156..2fac356 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2011-05-21 Ulrich Drepper <drepper@gmail.com>
+ * configure.in: Fix typo in redirection and correct removal of test
+ files in two cases.
+
[BZ #12788]
* locale/setlocale.c (new_composite_name): Fix test to check for
identical name of all categories.
diff --git a/configure b/configure
index fdfa5ef..6cf85e5 100755
--- a/configure
+++ b/configure
@@ -5963,7 +5963,7 @@ EOF
fi
fi
fi
- rm -f conftest.cs
+ rm -f conftest.{c,s}
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_visibility_attribute" >&5
@@ -5985,7 +5985,7 @@ else
int bar (int x) { return x; }
EOF
libc_cv_broken_visibility_attribute=yes
- if { ac_try='${CC-cc} -Werror -S conftest.c -o conftest.s1>&5'
+ if { ac_try='${CC-cc} -Werror -S conftest.c -o conftest.s 1>&5'
{ { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5
(eval $ac_try) 2>&5
ac_status=$?
@@ -6626,7 +6626,7 @@ EOF
else
libc_cv_have_section_quotes=unknown
fi
- rm -f conftest.cs
+ rm -f conftest.{c,s}
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_have_section_quotes" >&5
diff --git a/configure.in b/configure.in
index e5ff6bd..fbc64b9 100644
--- a/configure.in
+++ b/configure.in
@@ -1388,7 +1388,7 @@ EOF
fi
fi
fi
- rm -f conftest.[cs]
+ rm -f conftest.{c,s}
])
if test $libc_cv_visibility_attribute != yes; then
AC_MSG_ERROR(compiler support for visibility attribute is required)
@@ -1404,7 +1404,7 @@ EOF
int bar (int x) { return x; }
EOF
libc_cv_broken_visibility_attribute=yes
- if AC_TRY_COMMAND(${CC-cc} -Werror -S conftest.c -o conftest.s1>&AS_MESSAGE_LOG_FD); then
+ if AC_TRY_COMMAND(${CC-cc} -Werror -S conftest.c -o conftest.s 1>&AS_MESSAGE_LOG_FD); then
changequote(,)dnl
if grep '\.hidden[ _]foo' conftest.s >/dev/null; then
changequote([,])dnl
@@ -1806,7 +1806,7 @@ EOF
else
libc_cv_have_section_quotes=unknown
fi
- rm -f conftest.[cs]
+ rm -f conftest.{c,s}
])
if test $libc_cv_have_section_quotes = yes; then
AC_DEFINE(HAVE_SECTION_QUOTES)
@@ -2080,7 +2080,7 @@ fi
if test -n "$submachine"; then
AC_CACHE_CHECK([for compiler option for CPU variant],
- libc_cv_cc_submachine, [dnl
+ libc_cv_cc_submachine, [dnl
libc_cv_cc_submachine=no
for opt in "-march=$submachine" "-mcpu=$submachine"; do
if AC_TRY_COMMAND([${CC-cc} $opt -xc /dev/null -S -o /dev/null]); then
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 3 +++
configure | 6 +++---
configure.in | 8 ++++----
3 files changed, 10 insertions(+), 7 deletions(-)
hooks/post-receive
--
GNU C Library master sources