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: [email protected]
For additional commands, e-mail: [email protected]