Re: GNU JavaMail - Bug 21615, Patch 6274
Chris Burdess <[email protected]> Tue, 27 Nov 2007 08:46:43 +0000
| Newsgroups | gmane.comp.java.classpath.extensions.javamail |
|---|---|
| Message-ID | <[email protected]> |
Conrad T. Pino wrote: > The two messages I've received from you since submitting this > thread are somewhat ambiguous, "...do this and submit a patch > against HEAD." and "I have no problem with stripping trailing > whitespace, go ahead." > > The ambiguity lies in solicitation of a patch when a patch is > part of and attached to the bug submission: > > > Bug 21615: Successful HEAD Compile - High Warning Count > > https://savannah.gnu.org/bugs/?21615 You've attached several files to the bug report but none of them is a patch file. Patch files enable us to see at a glance what has changed and what hasn't, and can be applied using the patch command to an existing directory tree. If you add the following to your .cvsrc : cvs -q -z9 diff -uN update -Pd so that you get unified diffs, you can do the following in your local tree: cvs diff >patch The file "patch" then contains the patch, which can be applied to a tree with: patch -p0 <patch -- Chris Burdess