diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2015-12-10 01:47:46 +0100 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2016-01-11 11:39:28 +0300 |
commit | 713572a7b59acfcf8fe0f35c799f647792c8c8cd (patch) | |
tree | 3ae7aa0eb47813cb13205ac1c7fdd6962b7425f7 /configure | |
parent | 66c058cb69ab158e3fd61b0172e215e650f33213 (diff) |
configure: fix trace backend check
Found thanks to shellcheck!
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4817,7 +4817,7 @@ echo "libcap-ng support $cap_ng" echo "vhost-net support $vhost_net" echo "vhost-scsi support $vhost_scsi" echo "Trace backends $trace_backends" -if test "$trace_backend" = "simple"; then +if have_backend "simple"; then echo "Trace output file $trace_file-<pid>" fi if test "$spice" = "yes"; then |