aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2012-01-30 09:48:55 -0800
committerRoland McGrath <roland@hack.frob.com>2012-01-30 09:48:55 -0800
commit53fb8811fd7873ab67d55d72386a303e9734603a (patch)
tree095841d4e2c8fa3754f8ba0040d61009f709a43c /scripts
parent631581072026701ffd4f3490a68d1e752adaf94f (diff)
parente034841eac8e96fa255c52864be06352ee7981ae (diff)
downloadglibc-53fb8811fd7873ab67d55d72386a303e9734603a.tar.xz
glibc-53fb8811fd7873ab67d55d72386a303e9734603a.zip
Merge remote-tracking branch 'origin/cmetcalf/tile_firstversions'
Conflicts: ChangeLog
Diffstat (limited to 'scripts')
-rw-r--r--scripts/firstversions.awk8
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/firstversions.awk b/scripts/firstversions.awk
index 4a20fc0f9d..ccde4b59b4 100644
--- a/scripts/firstversions.awk
+++ b/scripts/firstversions.awk
@@ -54,9 +54,13 @@ $1 == "}" {
while (vers_compare($1, v) >= 0) {
delete firstversion[thislib, idx[thislib]];
idx[thislib]++;
- if ((thislib, idx[thislib]) in firstversion)
+ if ((thislib, idx[thislib]) in firstversion) {
+ # If we're skipping a referenced version to jump ahead to a
+ # later version, synthesize the earlier referenced version now.
+ if (v != $1 && (thislib, v) in usedversion)
+ print " " v;
v = firstversion[thislib, idx[thislib]];
- else
+ } else
break;
}
if ($1 == v || $1 == f)