diff options
author | Florian Weimer <fweimer@redhat.com> | 2015-10-29 15:33:54 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2015-11-06 13:58:53 +0100 |
commit | 8c77b6ad4063534fb1e5a6904217c4586060334a (patch) | |
tree | 523517a67c4b852dfd6c849c11270b8a997a2e88 /ChangeLog | |
parent | 8b7b7f75d91f7bac323dd6a370aeb3e9c5c4a7d5 (diff) | |
download | glibc-8c77b6ad4063534fb1e5a6904217c4586060334a.tar glibc-8c77b6ad4063534fb1e5a6904217c4586060334a.tar.gz glibc-8c77b6ad4063534fb1e5a6904217c4586060334a.tar.bz2 glibc-8c77b6ad4063534fb1e5a6904217c4586060334a.zip |
Simplify the abilist format
The new format lists the version on each line, as in:
VERSION SYMBOL TYPE [VALUE]
This makes it easier to process the files with line-oriented tools.
The abilist files were converted with this awk script:
/^[^ ]/ { version = $1 }
/^ / { print version, substr($0, 2) }
And sorted under the "C" locale with sort.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,11 @@ +2015-11-06 Florian Weimer <fweimer@redhat.com> + + Simplify abilist format to be line-based. + * scripts/abilist.awk: Collect descriptors in the descs variable. + (emit): Write descs variable and sort it + externally, with sort. + * sysdeps/**/*.abilist: Convert to new format. + 2015-11-06 Mark Wielaard <mjw@redhat.com> [BZ #11460] |