summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian2006-07-11 19:30:05 +0000
committerBruce Momjian2006-07-11 19:30:05 +0000
commitc725e851b9f0fcf4a537173e1a619f95dc3c3819 (patch)
tree7a333bed80c18cf8e094e009ffd3b6e8805b8892
parent7ed0f4143ba03e7e79e81d7e0dbc12d26f37fa48 (diff)
Improve shell script wrapping.
-rwxr-xr-xsrc/tools/pginclude/pgrminclude4
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" ]