diff options
author | Marc-André Lureau | 2017-01-04 21:57:22 +0100 |
---|---|---|
committer | Paolo Bonzini | 2017-01-19 22:07:46 +0100 |
commit | a049223ab1d71834a311f8c7849cdd68deb9e7b2 (patch) | |
tree | c18460408c9f109ad8d9895b815240a3fc24e05f /configure | |
parent | hax: add Darwin support (diff) | |
download | qemu-a049223ab1d71834a311f8c7849cdd68deb9e7b2.tar.gz qemu-a049223ab1d71834a311f8c7849cdd68deb9e7b2.tar.xz qemu-a049223ab1d71834a311f8c7849cdd68deb9e7b2.zip |
Revert "win32: don't run subprocess tests on Mingw32 platform"
This reverts commit 7ad9339e372fcd12d584684d7f52ac259604a4f4.
The error "Failed to execute helper program (No such file or directory)"
is due to broken glib installation, missing windows gspawn helpers.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20170104205722.26492-1-marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3079,7 +3079,7 @@ fi # g_test_trap_subprocess added in 2.38. Used by some tests. glib_subprocess=yes -if test "$mingw32" = "yes" || ! $pkg_config --atleast-version=2.38 glib-2.0; then +if ! $pkg_config --atleast-version=2.38 glib-2.0; then glib_subprocess=no fi |