summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-04-03 06:59:37 +0000
committerUlrich Drepper <drepper@redhat.com>2002-04-03 06:59:37 +0000
commitb028b8ad4ebb0a8303c380176cf465b0a8bbce45 (patch)
treed6c8cdf7c2d7cd4b237979b73bccd08f9407807f /scripts
parent8693ad52d977cfde85bcd104a7f47dae6fe36c0b (diff)
Update.
* sysdeps/unix/sysv/linux/arm/dl-procinfo.c: Completely specify size of _dl_arm_cap_flags. Patch by enrico.scholz@informatik.tu-chemnitz.de [PR libc/3155]. * sysdeps/unix/sysv/linux/arm/dl-procinfo.h (_DL_HWCAP_COUNT): Define as 8. 2002-03-22 H.J. Lu <hjl@gnu.org> * scripts/firstversions.awk: Check the first version. 2002-04-02 Ulrich Drepper <drepper@redhat.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/firstversions.awk5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/firstversions.awk b/scripts/firstversions.awk
index 736ef0365c..1a500f4f1d 100644
--- a/scripts/firstversions.awk
+++ b/scripts/firstversions.awk
@@ -27,7 +27,8 @@ $1 == "}" {
if ((thislib, idx[thislib]) in firstversion) {
# XXX relative string comparison loses if we ever have multiple digits
# between dots in GLIBC_x.y[.z] names.
- v = firstversion[thislib, idx[thislib]];
+ f = firstversion[thislib, idx[thislib]];
+ v = f;
while ($1 >= v) {
firstversion[thislib, idx[thislib]] = 0;
idx[thislib]++;
@@ -36,7 +37,7 @@ $1 == "}" {
else
break;
}
- if ($1 >= v)
+ if ($1 >= v || $1 == f)
print;
else
print $1, "=", v;