From: Roland McGrath Date: Mon, 3 Mar 2003 02:38:21 +0000 (+0000) Subject: 2003-03-02 Roland McGrath X-Git-Tag: cvs/glibc-2_3_3~1400 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=44aeb4868c93ed6981869a5b933d76d7d55800c2;p=thirdparty%2Fglibc.git 2003-03-02 Roland McGrath * scripts/abilist.awk: Don't distinguish weak symbols in normal output. --- diff --git a/scripts/abilist.awk b/scripts/abilist.awk index 346527ef0be..6e413f524b3 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;