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)
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/backend/catalog/Attic/genbki.sh,v 1.1.1.1.2.4 1996/08/22 06:27:25 mcguirk Exp $
+# $Header: /cvsroot/pgsql/src/backend/catalog/Attic/genbki.sh,v 1.1.1.1.2.5 1996/08/24 20:38:13 scrappy Exp $
#
# NOTES
# non-essential whitespace is removed from the generated file.
# by the sed above.
# ----------------
/^\/\*/ { comment_level += 1; next; }
-/^*\// { comment_level -= 1; next; }
+/^\*\// { comment_level -= 1; next; }
comment_level > 0 { next; }
/^[ ]*$/ { next; }