I recently got involved in a Java project at work: we're using MyEclipse for the IDE, and Subclipse for source control integration. Since I am new to the project, I am currently submitting any changes I make as patches, to make it easier for the other team members to review my changes and decide whether or not to commit them to the trunk. However, when I create a patch using the Create Patch option in the Team menu, the resulting patch contains absolute paths to the files that have changed. Since I want to be able to e-mail these patches to other team members and have them simply apply the patches to their own working folder, I would like to produce patches that contain only relative file paths (I'm running on Ubuntu and currently my working copy is in my home folder, so the absolute paths are especially annoying).
Is there a way to configure Eclipse/Subclipse to do this? I searched the Eclipse Preferences and clicked through the Create Patch wizard a few times, but I couldn't find anything that looks like it will do this. Currently, I'm manually editing the patch files with a text editor to convert the absolute file paths to relative paths. If Subclipse can't do this, I'm open to other suggestions.
EDIT: I know that there is the option to ignore a certain number of segments in file name paths when you go to apply the patch from within Eclipse, but I was curious if there was a way to avoid this to reduce the number of steps involved in applying patches. By manually editing the paths to make them relative to the project's root folder, an end-user just has to be sure to apply the patch at the root project folder level. I'd like to have that simplicity without having to manually edit the patch files.