提交 271945a1 编写于 作者: E Eric Blake 提交者: Jim Meyering

maint: update syntax-check rule to also catch test's -o operator

* cfg.mk (sc_prohibit_test_minus_a): Rename...
(sc_prohibit_test_minus_ao): ...and flag '-o', too.
上级 15613359
...@@ -270,10 +270,12 @@ sc_preprocessor_indentation: ...@@ -270,10 +270,12 @@ sc_preprocessor_indentation:
echo '$(ME): skipping test $@: cppi not installed' 1>&2; \ echo '$(ME): skipping test $@: cppi not installed' 1>&2; \
fi fi
# Using test's -a operator is not portable. _m1 = use "test C1 && test C2", not "test C1 -''a C2"
sc_prohibit_test_minus_a: _m2 = use "test C1 || test C2", not "test C1 -''o C2"
@re='\<test .+ -[a] ' \ # Using test's -a and -o operators is not portable.
msg='use "test C1 && test C2, not "test C1 -''a C2"' \ sc_prohibit_test_minus_ao:
@re='\<test .+ -[ao] ' \
msg='$(_m1); $(_m2)' \
$(_prohibit_regexp) $(_prohibit_regexp)
sc_copyright_format: sc_copyright_format:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册