classfiles with the following block:
<apply executable="${javahome}/bin/javap.exe" dest="${bytecode}"
parallel="false">
<arg value="-c" />
<arg value="-private" />
<srcfile />
<fileset dir="${build}" includes="**/*.class" />
<mapper type="glob" from="*.class" to="*.bc" />
</apply>
The problem is, the srcfile is of form:
"package\package\file.class"
and I need it to be:
"package.package.file"
How can I transform it?
--
To unsubscribe, e-mail:
For additional commands, e-mail: