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 スクリプトの違いは、作業ディレクトリです。1 つは現在のもので、もう 1 つはアスタリスクのものです。
おそらくあなたはただやりたいだけです:
<exec dir="${basedir}" executable="${basedir}/configure"> <arg line="--prefix=/home/some/path"/> </exec>