mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
* scripts/lib-names.awk: Consider [0-9].* a "number", not just [0-9]+.
Reported by H.J. Lu <hongjiu.lu@intel.com>.
This commit is contained in:
@ -6,7 +6,7 @@ $1 != "DEFAULT" { multi = 1 }
|
||||
{
|
||||
lib = $2;
|
||||
version = $3;
|
||||
if ($3 ~ /[^0-9]/) {
|
||||
if ($3 !~ /^[0-9]/) {
|
||||
soname = $3;
|
||||
extra = $3;
|
||||
sub(/\.so.*$/, "", extra);
|
||||
|
Reference in New Issue
Block a user