提交 9d06d0f6 编写于 作者: A Andrea Bolognani 提交者: Cole Robinson

configure: Fix check for --with-login-shell on Windows

The check is supposed to stop users from trying to compile
virt-login-shell on Windows by erroring out during the
configure phase; however, there are two flaws in it:

  * the value of "x$with_win" is compared to "yes" instead
    of "xyes" (note the "x" in the first string)

  * "test" is not being used, so the script will actually
    try to run a command called "x$with_win" instead of
    performing string comparison

This patch fixes both issues.

(cherry picked from commit ccf58bd7)
上级 7497777b
...@@ -22,7 +22,7 @@ AC_DEFUN([LIBVIRT_CHECK_LOGIN_SHELL], [ ...@@ -22,7 +22,7 @@ AC_DEFUN([LIBVIRT_CHECK_LOGIN_SHELL], [
if test "x$with_login_shell" != "xno"; then if test "x$with_login_shell" != "xno"; then
if test "x$with_win" = "xyes"; then if test "x$with_win" = "xyes"; then
if "x$with_login_shell" = "yes"; then if test "x$with_login_shell" = "xyes"; then
AC_MSG_ERROR([virt-login-shell is not supported on Windows]) AC_MSG_ERROR([virt-login-shell is not supported on Windows])
else else
with_login_shell=no; with_login_shell=no;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册