I have script for asterisk
./configure --prefix=/home/some/path
I want to execute this script from build.xml file
this version does not work
<exec dir="${asterisk.dir}" executable="./configure">
<arg line=" --prefix=/home/some/path"/>
</exec>
Can anybody help me?
--.