diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-05-15 02:58:18 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-05-15 02:58:18 +0000 |
commit | 215a87451d1fd623fd2699fa57f16f8ab6f6a2f3 (patch) | |
tree | 1a26c877b22ed3754d200e38bf748a6e6edcd1e8 | |
parent | 2f9a1be867489eb4fdc46e052163eb3cab99aef1 (diff) | |
download | glibc-215a87451d1fd623fd2699fa57f16f8ab6f6a2f3.tar glibc-215a87451d1fd623fd2699fa57f16f8ab6f6a2f3.tar.gz glibc-215a87451d1fd623fd2699fa57f16f8ab6f6a2f3.tar.bz2 glibc-215a87451d1fd623fd2699fa57f16f8ab6f6a2f3.zip |
[BZ #6428]
* configure.in: Don't use $CFLAGS when assembling, use $ASFLAGS.
-rw-r--r-- | ChangeLog | 3 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | localedata/ChangeLog | 5 |
4 files changed, 10 insertions, 2 deletions
@@ -1,5 +1,8 @@ 2008-05-14 Ulrich Drepper <drepper@redhat.com> + [BZ #6428] + * configure.in: Don't use $CFLAGS when assembling, use $ASFLAGS. + [BZ #6442] * string/endian.h: Add macros for fixed-size endian conversion. * bits/byteswap.h: Allow inclusion from <endian.h>. @@ -6266,7 +6266,7 @@ EOF echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; } \ && grep -q .note.GNU-stack conftest.s \ - && { ac_try='${CC-cc} $CFLAGS $CPPFLAGS -Wa,--noexecstack + && { ac_try='${CC-cc} $ASFLAGS -Wa,--noexecstack -c -o conftest.o conftest.s 1>&5' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 diff --git a/configure.in b/configure.in index e6a5abb54c..ef9893c800 100644 --- a/configure.in +++ b/configure.in @@ -1520,7 +1520,7 @@ EOF if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -S -o conftest.s conftest.c 1>&AS_MESSAGE_LOG_FD]) \ && grep -q .note.GNU-stack conftest.s \ - && AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -Wa,--noexecstack + && AC_TRY_COMMAND([${CC-cc} $ASFLAGS -Wa,--noexecstack -c -o conftest.o conftest.s 1>&AS_MESSAGE_LOG_FD]) then libc_cv_as_noexecstack=yes diff --git a/localedata/ChangeLog b/localedata/ChangeLog index 5c9cbf2215..21047d49e4 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,3 +1,8 @@ +2008-05-14 Ulrich Drepper <drepper@redhat.com> + + * locales/be_BY: Fix yesexpr. + Patch by Alexander Mikhailian <mikhailian@altern.org>. + 2008-04-15 Ulrich Drepper <drepper@redhat.com> * charmaps/UTF-8: Update for Unicode v5.1. |