LD_LIBRARY_PATH My java program needs LD_LIBRARY_PATH to be set in the environment. If I use ant to invoke it with fork=yes, how do I make LD_LIBRARY_PATH available to the VM started by ant?
Created Jul 30, 2002
Erik Hatcher Use a nested <env> element to your
Then env sub element is available in the java task since ant 1.5.
<java fork="true" >Note that it only works with fork="true" for obvious reasons.
Then env sub element is available in the java task since ant 1.5.