diff options
author | Phil Edwards <pme@gcc.gnu.org> | 2003-07-11 04:04:49 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2003-07-11 04:04:49 +0000 |
commit | 58579a27aa7596fd417d84543949c55507abb456 (patch) | |
tree | a526278509386a25469c85665d9825bad22b99a9 /libstdc++-v3/scripts | |
parent | 1dc9efda9178487c316f04470064772aa59acc1c (diff) | |
download | gcc-58579a27aa7596fd417d84543949c55507abb456.zip gcc-58579a27aa7596fd417d84543949c55507abb456.tar.gz gcc-58579a27aa7596fd417d84543949c55507abb456.tar.bz2 |
acinclude.m4 (GLIBCC_ENABLE_SYMVERS): Tweak comments.
2003-07-11 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCC_ENABLE_SYMVERS): Tweak comments. Add
warning messages if the environment cannot support symbol versioning.
(port_specific_symbol_file): It's plural, add an 's' on the end.
* configure.host: Likewise.
* src/Makefile.am: Likewise.
* config/linker-map.gnu: Remove one semicolon, heh.
* scripts/extract_symvers: Don't assume useful 'export' syntax.
Set LANG as well as LC_ALL for possibly-broken sort(1)s.
* aclocal.m4, configure, src/Makefile.in: Regenerated.
From-SVN: r69212
Diffstat (limited to 'libstdc++-v3/scripts')
-rwxr-xr-x | libstdc++-v3/scripts/extract_symvers | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libstdc++-v3/scripts/extract_symvers b/libstdc++-v3/scripts/extract_symvers index e7b6645..c7798b7 100755 --- a/libstdc++-v3/scripts/extract_symvers +++ b/libstdc++-v3/scripts/extract_symvers @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003 Free Software Foundation, Inc. # # This file is part of the GNU ISO C++ Library. This library is free # software; you can redistribute it and/or modify it under the @@ -45,7 +45,10 @@ if readelf --help | grep -- --wide > /dev/null; then fi # This avoids weird sorting problems later. -export LC_ALL=C +LC_ALL=C +export LC_ALL +LANG=C +export LANG tmp=extract.$$ |