Skip to content
Snippets Groups Projects
Commit acf70442 authored by Iustin Pop's avatar Iustin Pop
Browse files

Fix qemu-img configure.ac check


By accident, commit a002ed79 introduced the qemu-img checks in the
htools block. I found this also by mistake while investigating
another issue :)

Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarRené Nussbaumer <rn@google.com>
parent 88a10df5
No related branches found
No related tags found
No related merge requests found
...@@ -361,8 +361,6 @@ then ...@@ -361,8 +361,6 @@ then
AC_MSG_ERROR([socat not found]) AC_MSG_ERROR([socat not found])
fi fi
if test "$enable_htools" != "no"; then
# Check for qemu-img # Check for qemu-img
AC_ARG_VAR(QEMUIMG_PATH, [qemu-img path]) AC_ARG_VAR(QEMUIMG_PATH, [qemu-img path])
AC_PATH_PROG(QEMUIMG_PATH, [qemu-img], []) AC_PATH_PROG(QEMUIMG_PATH, [qemu-img], [])
...@@ -371,6 +369,8 @@ then ...@@ -371,6 +369,8 @@ then
AC_MSG_WARN([qemu-img not found, using ovfconverter will not be possible]) AC_MSG_WARN([qemu-img not found, using ovfconverter will not be possible])
fi fi
if test "$enable_htools" != "no"; then
# Check for ghc # Check for ghc
AC_ARG_VAR(GHC, [ghc path]) AC_ARG_VAR(GHC, [ghc path])
AC_PATH_PROG(GHC, [ghc], []) AC_PATH_PROG(GHC, [ghc], [])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment