Skip to content

Commit 83a0ad2

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. Submitted by: bryanh@giraffe.netgate.net (Bryan Henderson)
1 parent a2c3905 commit 83a0ad2

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.1.1.1.2.4 1996/08/22 06:27:25 mcguirk Exp $
13+
# $Header: /cvsroot/pgsql/src/backend/catalog/Attic/genbki.sh,v 1.1.1.1.2.5 1996/08/24 20:38:13 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)