You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2018/06/08 10:41:00 UTC

svn commit: r1833161 - /tomcat/trunk/build.xml

Author: markt
Date: Fri Jun  8 10:41:00 2018
New Revision: 1833161

URL: http://svn.apache.org/viewvc?rev=1833161&view=rev
Log:
Fix bnd failures on Windows

Modified:
    tomcat/trunk/build.xml

Modified: tomcat/trunk/build.xml
URL: http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=1833161&r1=1833160&r2=1833161&view=diff
==============================================================================
--- tomcat/trunk/build.xml (original)
+++ tomcat/trunk/build.xml Fri Jun  8 10:41:00 2018
@@ -3034,10 +3034,11 @@ Read the Building page on the Apache Tom
 
   <target name="add-osgi" if="${addOSGi}" >
     <echo message="add-osgi ${jarfile} ${addOSGi}"></echo>
-    <bndwrap output="${jarfile}" definitions="${tomcat.bnd}" >
+    <bndwrap output="${jarfile}.bnd" definitions="${tomcat.bnd}" >
       <fileset file="${jarfile}"  />
     </bndwrap>
-    <delete file="${jarfile}.bak" />
+    <delete file="${jarfile}" />
+    <move file="${jarfile}.bnd" tofile="${jarfile}" />
   </target>
 
   <!-- Macro, used to create checksum and signature files  -->



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org