Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit1b62a71

Browse files
committed
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
1 parent4081268 commit1b62a71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/backend/utils/Gen_fmgrtab.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#
1010
#
1111
# IDENTIFICATION
12-
# $Header: /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh,v 1.19 2001/01/24 19:43:12 momjian Exp $
12+
# $Header: /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh,v 1.20 2001/05/22 12:06:51 momjian Exp $
1313
#
1414
#-------------------------------------------------------------------------
1515

@@ -108,7 +108,7 @@ if [ $? -ne 0 ]; then
108108
fi
109109

110110
$CPP$BKIOPTS$CPPTMPFILE| \
111-
egrep'^[0-9]'| \
111+
egrep'^[ ]*[0-9]'| \
112112
sort -n>$RAWFILE
113113

114114
if [$?-ne 0 ];then

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp