This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: classpath-0.95 merge
Andrew Haley wrote:
> Gary Benson writes:
> > Andrew Haley wrote:
> > > Matthias Klose writes:
> > > > How to determine .class and generated .h files for .java files
> > > > which are removed in the merge.
> > >
> > > It's probably easiest to svn delete the lot of them and then
> > > rebuild. However, this would lead to a lot of diffs. Hmm, I
> > > wonder if there is some automatic to handle this: perhaps delete
> > > all the classes, then rebuild, then do a diff of the directory
> > > listing with a clean tree?
> >
> > It shouldn't lead to differences, unless you're using a different
> > ecj. Just deleting all the classes and headers and rebuilding
> > should be sufficient.
>
> And how will you know which classes and headers to "svn delete" ?
svn stat | grep ^\! | cut -c 8- | xargs svn rm
Cheers,
Gary