m4/virt: use LIBVIRT_RESULT macro instead of AC_MSG_NOTICE

The LIBVIRT_RESULT does a nice formatting of the output and ensures
that the format is unified.

Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
This commit is contained in:
Pavel Hrdina 2016-12-14 16:55:30 +01:00
parent c093fb1fdc
commit ec1a663195
3 changed files with 3 additions and 3 deletions

View File

@ -56,5 +56,5 @@ dnl Build with gnulib's getopt which contains a reentrant interface
AC_DEFUN([gl_REPLACE_GETOPT_ALWAYS], [])
AC_DEFUN([LIBVIRT_DRIVER_RESULT_BHYVE],[
AC_MSG_NOTICE([ Bhyve: $with_bhyve])
LIBVIRT_RESULT([Bhyve], [$with_bhyve])
])

View File

@ -51,5 +51,5 @@ AC_DEFUN([LIBVIRT_DRIVER_CHECK_UML],[
])
AC_DEFUN([LIBVIRT_DRIVER_RESULT_UML],[
AC_MSG_NOTICE([ UML: $with_uml])
LIBVIRT_RESULT([UML], [$with_uml])
])

View File

@ -42,5 +42,5 @@ AC_DEFUN([LIBVIRT_DRIVER_CHECK_VZ],[
])
AC_DEFUN([LIBVIRT_DRIVER_RESULT_VZ],[
AC_MSG_NOTICE([ vz: $with_vz])
LIBVIRT_RESULT([vz], [$with_vz])
])