如何放置逻辑或autoconf m4 AS_IF

时间:2014-01-09 08:56:23

标签: autoconf m4

在官方文档中,AS_IF宏的描述非常类似于:

Macro: AS_IF (test1, [run-if-true1], ..., [run-if-false]) 

如何让test1包括几个条件? (“逻辑”和“逻辑或”的组合)

由于

1 个答案:

答案 0 :(得分:2)

好的,test1只是一个bash命令。所以它应该用作常规的bash代码。例如:

AS_IF ([test "x$a" == "xb" || test "x$a" == "xc"], [echo "test passed"], [echo "test has not passed"]