提交 801a0a57 编写于 作者: A Andrea Bolognani

configure: Remove nested conditionals in LIBVIRT_CHECK_INIT_SCRIPT

We don't need them any longer; moreover, the previous structure
made it very easy for bugs to slip in, by having the result of one
check influence the following one.

By placing the check for "$with_init_script" = check front and
center, hopefully this won't happen (as easily) again.
上级 8a38f964
......@@ -30,20 +30,14 @@ AC_DEFUN([LIBVIRT_CHECK_INIT_SCRIPT],[
init_systemd=no
init_upstart=no
if test "$with_init_script" = check; then
if test "$cross_compiling" = yes; then
with_init_script=none
fi
if test "$with_init_script" = check && test "$cross_compiling" = yes; then
with_init_script=none
fi
if type systemctl >/dev/null 2>&1; then
if test "$with_init_script" = check; then
with_init_script=systemd
fi
if test "$with_init_script" = check && type systemctl >/dev/null 2>&1; then
with_init_script=systemd
fi
if test -f /etc/redhat-release; then
if test "$with_init_script" = check; then
with_init_script=redhat
fi
if test "$with_init_script" = check && test -f /etc/redhat-release; then
with_init_script=redhat
fi
if test "$with_init_script" = check; then
with_init_script=none
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册