最佳答案
我试过了:
- command: ./configure chdir=/src/package/
- command: /usr/bin/make chdir=/src/package/
- command: /usr/bin/make install chdir=/src/package/
这招管用,但我希望是更简洁的。
所以我试了这个:
从: https://stackoverflow.com/questions/24043561/multiple-commands-in-the-same-line-for-bruker-topspin返回“没有这样的文件或目录”
- command: ./configure;/usr/bin/make;/usr/bin/make install chdir=/src/package/
但我找不到正确的语法来表达:
- command: "{{ item }}" chdir=/src/package/
with_items:
./configure
/usr/bin/make
/usr/bin/make install
这不起作用,说有一个报价的问题。