diff options
author | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2015-06-24 10:45:42 +0100 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2015-06-24 13:00:43 +0200 |
commit | d46f7c9e648d8098ac73b36834ac81237b8c2c2d (patch) | |
tree | d6f55b739f037ac4491f24c716957552c2dcc823 /configure | |
parent | 48ea3dedc54dbcb3c738ddef02a336739910ecfd (diff) | |
download | qemu-d46f7c9e648d8098ac73b36834ac81237b8c2c2d.zip |
Fix glib_subprocess test
A typo means that the tests dependent on glib with subprocess
support are never run.
Fixes: 9d41401b90fa10b335d2e739149d36437cfbf622
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4822,7 +4822,7 @@ if test "$bluez" = "yes" ; then echo "CONFIG_BLUEZ=y" >> $config_host_mak echo "BLUEZ_CFLAGS=$bluez_cflags" >> $config_host_mak fi -if test "glib_subprocess" = "yes" ; then +if test "$glib_subprocess" = "yes" ; then echo "CONFIG_HAS_GLIB_SUBPROCESS_TESTS=y" >> $config_host_mak fi echo "GLIB_CFLAGS=$glib_cflags" >> $config_host_mak |