diff options
author | Bruce Momjian | 2006-07-11 19:30:05 +0000 |
---|---|---|
committer | Bruce Momjian | 2006-07-11 19:30:05 +0000 |
commit | c725e851b9f0fcf4a537173e1a619f95dc3c3819 (patch) | |
tree | 7a333bed80c18cf8e094e009ffd3b6e8805b8892 | |
parent | 7ed0f4143ba03e7e79e81d7e0dbc12d26f37fa48 (diff) |
Improve shell script wrapping.
-rwxr-xr-x | src/tools/pginclude/pgrminclude | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/pginclude/pgrminclude b/src/tools/pginclude/pgrminclude index 02efc023ab..9b26d12935 100755 --- a/src/tools/pginclude/pgrminclude +++ b/src/tools/pginclude/pgrminclude @@ -55,7 +55,9 @@ do fi echo "}" >>/tmp/$$.c - cc -fsyntax-only -Werror -Wall -Wmissing-prototypes -Wmissing-declarations -I/pg/include -I/pg/backend -c /tmp/$$.c -o /tmp/$$.o >/tmp/$$ 2>&1 + cc -fsyntax-only -Werror -Wall -Wmissing-prototypes \ + -Wmissing-declarations -I/pg/include -I/pg/backend \ + -c /tmp/$$.c -o /tmp/$$.o >/tmp/$$ 2>&1 if [ "$?" -eq 0 ] then echo "$FILE $INCLUDE" if [ "$IS_INCLUDE" = "N" ] |