]> granicus.if.org Git - postgresql/commitdiff
Here's the fix for the problem that Evan Champion reported today.
authorMarc G. Fournier <scrappy@hub.org>
Sat, 24 Aug 1996 20:38:13 +0000 (20:38 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Sat, 24 Aug 1996 20:38:13 +0000 (20:38 +0000)
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)

src/backend/catalog/genbki.sh

index 79f226548124a52c37359d91d899db8683abba44..0cb02b90a674baac1e1933f3739639292eecf99e 100644 (file)
@@ -10,7 +10,7 @@
 #
 #
 # 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.
@@ -91,7 +91,7 @@ BEGIN {
 # by the sed above.
 # ----------------
 /^\/\*/           { comment_level += 1; next; }
-/^*\//            { comment_level -= 1; next; }
+/^\*\//           { comment_level -= 1; next; }
 comment_level > 0 { next; }
 
 /^[    ]*$/      { next; }