The Watcom preprocessor adds a space at the start of each line. Therefore

Bruce Momjian <bruce@momjian.us>

Commit: 1b62a714dcac476f5a051557929ab04caf2faff9
Author: Bruce Momjian <bruce@momjian.us>
Date: 2001-05-22T12:06:51Z
Releases: 7.2.1
The Watcom preprocessor adds a space at the start of each line. Therefore
the output of "egrep '^[0-9]' " is empty. Changing the pattern to
"egrep '^[ ]*[0-9]" generates the correct file.

Tegge, Bernd

Files

PathChange+/−
src/backend/utils/Gen_fmgrtab.sh modified +2 −2