diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-10-12 01:18:03 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-10-12 01:18:03 +0000 |
commit | 317330f73fccd66a707c12f2d4c8d0fe9216aecf (patch) | |
tree | a0fa12cea36a3c09b01706c4322fcf83638a44e0 /libstdc++-v3 | |
parent | fe1ea13a4f927ad45d3a0f12f523ec4838ca6309 (diff) | |
download | gcc-317330f73fccd66a707c12f2d4c8d0fe9216aecf.tar.gz |
2005-10-11 Andrew Pinski <pinskia@physics.uc.edu>
PR libstdc++/23926
* acinclude.m4 (GLIBCXX_ENABLE_SYMVERS): Fix typo in check
for GNU LD.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@105285 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 7 | ||||
-rw-r--r-- | libstdc++-v3/acinclude.m4 | 2 | ||||
-rwxr-xr-x | libstdc++-v3/configure | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index e9f68830103..67a8a32d3ed 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2005-10-11 Andrew Pinski <pinskia@physics.uc.edu> + + PR libstdc++/23926 + * acinclude.m4 (GLIBCXX_ENABLE_SYMVERS): Fix typo in check + for GNU LD. + * configure: Regenerate. + 2005-10-10 Benjamin Kosnik <bkoz@redhat.com> * configure.ac (libtool_VERSION): To 6:7:0. diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4 index d66970220a4..9185a67309e 100644 --- a/libstdc++-v3/acinclude.m4 +++ b/libstdc++-v3/acinclude.m4 @@ -1696,7 +1696,7 @@ if test x$enable_symvers = xyes ; then if test $enable_shared = no || test "x$LD" = x ; then enable_symvers=no - elif test $with_gnu_ld == yes ; then + elif test $with_gnu_ld = yes ; then enable_symvers=gnu else case ${target_os} in diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index 5a259974766..e754c9e54e0 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -87257,7 +87257,7 @@ if test x$enable_symvers = xyes ; then if test $enable_shared = no || test "x$LD" = x ; then enable_symvers=no - elif test $with_gnu_ld == yes ; then + elif test $with_gnu_ld = yes ; then enable_symvers=gnu else case ${target_os} in |