我有星号的脚本
./configure --prefix=/home/some/path
我想从build.xml
文件执行这个脚本
此版本不适用于
<exec dir="${asterisk.dir}" executable="./configure">
<arg line=" --prefix=/home/some/path"/>
</exec>
有人能帮我吗?
命令行和Ant脚本之间的区别在于工作目录。一个是当前的,另一个是星号。
也许你只是想做:
<exec dir="${basedir}" executable="${basedir}/configure">
<arg line="--prefix=/home/some/path"/>
</exec>