mirror of
https://github.com/postgres/postgres.git
synced 2025-05-05 09:19:17 +03:00
22 lines
627 B
Plaintext
Executable File
22 lines
627 B
Plaintext
Executable File
:
|
|
# change #include's to <> or ""
|
|
# src/tools/pginclude/pgfixinclude
|
|
|
|
trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a /tmp/$$b" 0 1 2 3 15
|
|
find . \( -name .git -a -prune \) -o -type f -name '*.[chyls]' -print |
|
|
while read FILE
|
|
do
|
|
cat "$FILE" | grep "^#include" |
|
|
sed 's/^#include[ ]*[<"]\([^>"]*\).*$/\1/g' |
|
|
while read INCLUDE
|
|
do
|
|
if [ -s /usr/include/"$INCLUDE" ]
|
|
then cat "$FILE" |
|
|
sed 's;^#include[ ][ ]*[<"]'"$INCLUDE"'[>"]$;#include <'"$INCLUDE"'>;g' >/tmp/$$
|
|
else cat "$FILE" |
|
|
sed 's;^#include[ ][ ]*[<"]'"$INCLUDE"'[>"]$;#include "'"$INCLUDE"'";g' >/tmp/$$
|
|
fi
|
|
cat /tmp/$$ > "$FILE"
|
|
done
|
|
done
|