mirror of
https://github.com/postgres/postgres.git
synced 2026-04-23 07:07:22 -04:00
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
This commit is contained in:
parent
4081268d11
commit
1b62a714dc
1 changed files with 2 additions and 2 deletions
|
|
@ -9,7 +9,7 @@
|
|||
#
|
||||
#
|
||||
# IDENTIFICATION
|
||||
# $Header: /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh,v 1.19 2001/01/24 19:43:12 momjian Exp $
|
||||
# $Header: /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh,v 1.20 2001/05/22 12:06:51 momjian Exp $
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
|
|
@ -108,7 +108,7 @@ if [ $? -ne 0 ]; then
|
|||
fi
|
||||
|
||||
$CPP $BKIOPTS $CPPTMPFILE | \
|
||||
egrep '^[0-9]' | \
|
||||
egrep '^[ ]*[0-9]' | \
|
||||
sort -n > $RAWFILE
|
||||
|
||||
if [ $? -ne 0 ]; then
|
||||
|
|
|
|||
Loading…
Reference in a new issue