]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
m4/virt: use LIBVIRT_RESULT macro instead of AC_MSG_NOTICE
authorPavel Hrdina <phrdina@redhat.com>
Wed, 14 Dec 2016 15:55:30 +0000 (16:55 +0100)
committerPavel Hrdina <phrdina@redhat.com>
Wed, 21 Dec 2016 14:39:37 +0000 (15:39 +0100)
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>
m4/virt-driver-bhyve.m4
m4/virt-driver-uml.m4
m4/virt-driver-vz.m4

index bbdd8b2f0fed6f3e9da86527dac63d5f59ba9b2c..11d3a667ee00120208452db0c7e18dde7a761a25 100644 (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])
 ])
index 5c83d76e76e496e9e66cd5ad391491aeec355022..7b252e61eafa5c692ab3050c46a097d2789dd57e 100644 (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])
 ])
index 67001dce50fe8f233305d092440c0cd3b88328f8..7b7a8d5a94b911545c245ceb9cc4ac0764d3f7f1 100644 (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])
 ])