$NetBSD: patch-ah,v 1.2 2010/06/08 10:15:33 wiz Exp $

Setting FS in some versions of awk makes it null.  The default FS of
"whitespace" works fine, so no need to redefine it.

--- src/mkstrtable.awk.orig	2010-01-21 11:09:02.000000000 +0000
+++ src/mkstrtable.awk
@@ -81,7 +81,7 @@
 # variable and macro name.
 
 BEGIN {
-  FS = "[\t]+";
+  #FS = "[\t]+";
 # cpos holds the current position in the message string.
   cpos = 0;
 # msg holds the number of messages.
@@ -97,7 +97,7 @@ BEGIN {
 /^#/ { next; }
 
 header {
-  if ($1 ~ /^[0123456789]+$/)
+  if ($0 ~ /^[0-9]+/)
     {
       print "/* The purpose of this complex string table is to produce";
       print "   optimal code with a minimum of relocations.  */";
