blob: 78c261de6b4c7f107a577060342597b42eb1eeda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# DP: updates from the 4.7 branch upto 2012xxxx (r182348).
last_updated()
{
cat > ${dir}LAST_UPDATED <<EOF
Thu Dec 15 01:05:16 CET 2011
Thu Dec 15 00:05:16 UTC 2011 (revision 182348)
EOF
}
svn diff svn://gcc.gnu.org/svn/gcc/tags/gcc_4_7_0_release svn://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch \
| sed -r 's,^--- (\S+)\t(\S+)(.*)$,--- a/src/\1\t\2,;s,^\+\+\+ (\S+)\t(\S+)(.*)$,+++ b/src/\1\t\2,' \
| awk '/^Index:.*\.(class|texi)/ {skip=1; next} /^Index:/ { skip=0 } skip==0'
|