I have next target in my build.xml
<target name="idl2java">
<exec executable="idl2java">
<arg line="-root_dir ${root}"/>
<arg line="-package my.package"/>
<arg file="${idl}/*.idl"/>
</exec>
</target>If I call this target in Windoes - all fork fine.But if I try to
call this target in Unix, then I get next erroridl2java:
[exec] IDL preprocessor:cannot open file "/home/user/root/idl/*.idl"
[exec] 1 errorI do not understand why it does not work....If I call
idl2java from command line in Unix > idl2java -root_dir gen -package
mypackage idl/*.idlthen all work fine too.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]