Details
Description
If the current ant installation is missing the correct version of the junit library, the build will attempt to delete any existing junit libs. The fileset specified for the delete task in the jar-module.xml has "include" instead of "includes" which breaks ant. See patch below.
hivebuild/jar-module.xml
---------------8<--------------------------------------------
168c168
< <fileset dir="${ant.home}/lib" include="junit-*.jar"/>
—
> <fileset dir="${ant.home}/lib" includes="junit-*.jar"/>
----------------8<--------------------------------------------