Since I am still mystified how to trick svn into creating proper patch
files even for new things merged in from a branch I have split up the
patch again in two files:
The diff against the existing files on the trunk:
http://www.klomp.org/mark/classpath/libgcj-classpath-0_92-branch-point.patch.bz2
Created by:
svn status | grep -v ^A | cut -c8- | xargs svn diff >
libgcj-classpath-0_92-branch-point.patch
The new files added to the trunk through the merge or by hand:
http://www.klomp.org/mark/classpath/libgcj-classpath-0_92-branch-point-new.tar.bz2
Created by:
tar jcvf libgcj-classpath-0_92-branch-point-new.tar.bz2 $(for i in `svn
status | grep ^A | cut -c8-`; do if test -f $i; then echo $i; fi; done)