Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 108fe52

Browse files
committed
Improve shell script wrapping.
1 parent 01835c4 commit 108fe52

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/tools/pginclude/pgrminclude

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
:
22
# remove extra #include's
33

4-
# $PostgreSQL: pgsql/src/tools/pginclude/pgrminclude,v 1.6 2006/07/11 19:25:41 momjian Exp $
4+
# $PostgreSQL: pgsql/src/tools/pginclude/pgrminclude,v 1.7 2006/07/11 19:30:05 momjian Exp $
55

66
trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a /tmp/$$b" 0 1 2 3 15
77
find . \( -name CVS -a -prune \) -o -type f -name '*.[ch]' -print |
@@ -55,7 +55,9 @@ do
5555
fi
5656
echo "}" >>/tmp/$$.c
5757

58-
cc -fsyntax-only -Werror -Wall -Wmissing-prototypes -Wmissing-declarations -I/pg/include -I/pg/backend -c /tmp/$$.c -o /tmp/$$.o >/tmp/$$ 2>&1
58+
cc -fsyntax-only -Werror -Wall -Wmissing-prototypes \
59+
-Wmissing-declarations -I/pg/include -I/pg/backend \
60+
-c /tmp/$$.c -o /tmp/$$.o >/tmp/$$ 2>&1
5961
if [ "$?" -eq 0 ]
6062
then echo "$FILE $INCLUDE"
6163
if [ "$IS_INCLUDE" = "N" ]

0 commit comments

Comments
 (0)