Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有星号的脚本
./configure --prefix=/home/some/path
我想从build.xml文件中执行这个脚本
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>