summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2005-03-23 01:46:42 +0000
committerRoland McGrath <roland@gnu.org>2005-03-23 01:46:42 +0000
commit8ac78e60622522a936700fe27bad0f71e409f244 (patch)
treed4a804a5d1e5dd0e3a28e471ebcd041ddc6cc17f /scripts
parent2fb9a65c22e5d6d59ebadbdd7b0ead3bdd17abd6 (diff)
* scripts/versions.awk: No errors for GLIBC_PRIVATE.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/versions.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/versions.awk b/scripts/versions.awk
index c71eda587a..e642b3d16e 100644
--- a/scripts/versions.awk
+++ b/scripts/versions.awk
@@ -53,7 +53,7 @@ BEGIN {
/^ [A-Za-z_]/ {
if (renamed[actlib "::" $1])
actver = renamed[actlib "::" $1];
- else if (!versions[actlib "::" $1]) {
+ else if (!versions[actlib "::" $1] && $1 != "GLIBC_PRIVATE") {
printf("version %s not defined for %s\n", $1, actlib) > "/dev/stderr";
++lossage;
}