diff options
author | Roland McGrath <roland@gnu.org> | 2003-03-03 02:38:21 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-03-03 02:38:21 +0000 |
commit | 44aeb4868c93ed6981869a5b933d76d7d55800c2 (patch) | |
tree | cbc2f4c9453622d03f29b8aea1dc089b34870b64 /scripts/abilist.awk | |
parent | 4adacf579fe0c0f71cd367946dfdb57ef0e84fd4 (diff) | |
download | glibc-44aeb4868c93ed6981869a5b933d76d7d55800c2.tar glibc-44aeb4868c93ed6981869a5b933d76d7d55800c2.tar.gz glibc-44aeb4868c93ed6981869a5b933d76d7d55800c2.tar.bz2 glibc-44aeb4868c93ed6981869a5b933d76d7d55800c2.zip |
2003-03-02 Roland McGrath <roland@redhat.com>
* scripts/abilist.awk: Don't distinguish weak symbols in normal output.
Diffstat (limited to 'scripts/abilist.awk')
-rw-r--r-- | scripts/abilist.awk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/abilist.awk b/scripts/abilist.awk index 346527ef0b..6e413f524b 100644 --- a/scripts/abilist.awk +++ b/scripts/abilist.awk @@ -45,7 +45,9 @@ $2 == "g" || $2 == "w" && NF == 7 { next; } - desc = " " symbol " " (weak == "w" ? tolower(type) : type) size; + # Disabled -- weakness should not matter to shared library ABIs any more. + #if (weak == "w") type = tolower(type); + desc = " " symbol " " type size; if (version in versions) { versions[version] = versions[version] "\n" desc; |