projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
3edaedf
)
Recognize digits in library names.
author
drepper
<drepper>
Wed, 23 Sep 1998 14:01:56 +0000
(14:01 +0000)
committer
drepper
<drepper>
Wed, 23 Sep 1998 14:01:56 +0000
(14:01 +0000)
scripts/versions.awk
patch
|
blob
|
history
diff --git
a/scripts/versions.awk
b/scripts/versions.awk
index
d6571fd
..
f902482
100644
(file)
--- a/
scripts/versions.awk
+++ b/
scripts/versions.awk
@@
-12,7
+12,7
@@
BEGIN {
nlibs=0;
while (getline < defsfile) {
- if (/^[a-zA-Z_]+ {/) {
+ if (/^[a-zA-Z
0-9
_]+ {/) {
libs[$1] = 1;
curlib = $1;
while (getline < defsfile && ! /^}/) {
@@
-38,7
+38,7
@@
BEGIN {
}
# This matches the beginning of the version information for a new library.
-/^[a-zA-Z_]+/ {
+/^[a-zA-Z
0-9
_]+/ {
actlib = $1;
if (!libs[$1]) {
printf("no versions defined for %s\n", $1) > "/dev/stderr";