diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-01-29 14:30:48 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-01-29 14:30:48 +0000 |
commit | 21ab6fb6bc4c2eb2b3a9b533d11942b45865aca5 (patch) | |
tree | 0d37ff443660a3e6ea29812bc8d6c65ec642da2a /scripts | |
parent | 4142edc3faaefe26335c5445a45ea9f0827e60a1 (diff) | |
download | glibc-21ab6fb6bc4c2eb2b3a9b533d11942b45865aca5.tar.gz glibc-21ab6fb6bc4c2eb2b3a9b533d11942b45865aca5.tar.xz glibc-21ab6fb6bc4c2eb2b3a9b533d11942b45865aca5.zip |
Update.
* scripts/versions.awk: Quote { in regexp.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/versions.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/versions.awk b/scripts/versions.awk index f90248201b..f1223af32e 100644 --- a/scripts/versions.awk +++ b/scripts/versions.awk @@ -1,6 +1,6 @@ # Combine version map fragments into version files for the generated # shared object. -# (C) Copyright 1998 Free Software Foundation, Inc. +# (C) Copyright 1998, 1999 Free Software Foundation, Inc. # Written by Ulrich Drepper <drepper@cygnus.com>, 1998. # This script expects the following variables to be defined: @@ -12,7 +12,7 @@ BEGIN { nlibs=0; while (getline < defsfile) { - if (/^[a-zA-Z0-9_]+ {/) { + if (/^[a-zA-Z0-9_]+ \{/) { libs[$1] = 1; curlib = $1; while (getline < defsfile && ! /^}/) { |