If someone is against that please let me know (I never found *.rej very useful)
Jacques
Author: jleroux
Date: Wed Mar 30 19:42:00 2011
New Revision: 1087057
URL: http://svn.apache.org/viewvc?rev=1087057&view=rev
Log:
Deletes all useless *.rej files generated by apply patches
Modified:
ofbiz/trunk/framework/resources/templates/build.xml
Modified: ofbiz/trunk/framework/resources/templates/build.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/resources/templates/build.xml?rev=1087057&r1=1087056&r2=1087057&view=diff
==============================================================================
--- ofbiz/trunk/framework/resources/templates/build.xml (original)
+++ ofbiz/trunk/framework/resources/templates/build.xml Wed Mar 30 19:42:00 2011
@@ -98,6 +98,9 @@
<patch strip="0" patchfile="patches/framework.patch"
dir="${ofbiz.home.dir}"/>
<patch strip="0" patchfile="patches/applications.patch"
dir="${ofbiz.home.dir}"/>
<patch strip="0" patchfile="patches/specialpurpose.patch"
dir="${ofbiz.home.dir}"/>
+ <delete>
+ <fileset dir="${ofbiz.home.dir}" includes="**/*.rej"/>
+ </delete>
</target>
<target name="reapply-ofbiz-patches" description="First removes any previously
applied patch and then applies the new patch">