summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/abilist.awk4
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;