From f3c37d21acddbd7048a88e318e1a91f2e156c805 Mon Sep 17 00:00:00 2001 From: drepper Date: Fri, 29 Jan 1999 14:30:31 +0000 Subject: [PATCH] Quote { in regexp. --- scripts/versions.awk | 4 ++-- 1 file 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 , 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 && ! /^}/) { -- 2.11.0