Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2adb6d7

Browse files
committed
Here's the fix for the problem that Evan Champion reported today.
This presumably corrects a problem of initdb failing on systems that have an awk that is sensitive to this. -- Bryan Henderson Phone 408-227-6803 San Jose, California
1 parent e2c9fd8 commit 2adb6d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/catalog/genbki.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
#
1212
# IDENTIFICATION
13-
# $Header: /cvsroot/pgsql/src/backend/catalog/Attic/genbki.sh,v 1.3 1996/08/21 04:25:44 scrappy Exp $
13+
# $Header: /cvsroot/pgsql/src/backend/catalog/Attic/genbki.sh,v 1.4 1996/08/24 20:38:56 scrappy Exp $
1414
#
1515
# NOTES
1616
# non-essential whitespace is removed from the generated file.
@@ -91,7 +91,7 @@ BEGIN {
9191
# by the sed above.
9292
# ----------------
9393
/^\/\*/ { comment_level += 1; next; }
94-
/^*\// { comment_level -= 1; next; }
94+
/^\*\// { comment_level -= 1; next; }
9595
comment_level > 0 { next; }
9696
9797
/^[ ]*$/ { next; }

0 commit comments

Comments
 (0)