mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-07 20:17:44 +08:00
21 lines
573 B
Plaintext
Executable File
21 lines
573 B
Plaintext
Executable File
:
|
|
# change #include's to <> or ""
|
|
|
|
trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a /tmp/$$b" 0 1 2 3 15
|
|
find . \( -name CVS -a -prune \) -o -type f -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
|