blob: f5aae0eea50d35d1b438fdaa865aa7add8eb9e96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/sh
# Remove '#line ...' lines to not confuse mkdep(1).
find . -name '*.[ch]pp' -print |
xargs grep -l '^#line' |
while read f; do
mv $f $f.orig
sed '/^#line/d' <$f.orig >$f
rm $f.orig
done
exit 0
|