mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
533 B
19 lines
533 B
|
27 years ago
|
:
|
||
|
|
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 /tmp/$$a | 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
|