]> xenbits.xensource.com Git - libvirt.git/commitdiff
meson: Sort virt_install_dirs
authorAndrea Bolognani <abologna@redhat.com>
Wed, 2 Feb 2022 10:32:58 +0000 (11:32 +0100)
committerAndrea Bolognani <abologna@redhat.com>
Wed, 2 Feb 2022 15:26:35 +0000 (16:26 +0100)
This will make subsequent patches nicer.

Signed-off-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
src/libxl/meson.build
src/lxc/meson.build
src/qemu/meson.build

index 8347a3c96650b98e32e3007c313626bce150ab15..91696d3490904cdda3e1dd7fe2a1dc1fc6eeddea 100644 (file)
@@ -80,7 +80,7 @@ if conf.has('WITH_LIBXL')
 
   virt_install_dirs += [
     localstatedir / 'lib' / 'libvirt' / 'libxl',
-    runstatedir / 'libvirt' / 'libxl',
     localstatedir / 'log' / 'libvirt' / 'libxl',
+    runstatedir / 'libvirt' / 'libxl',
   ]
 endif
index c1f71b43e1071259eecb1eab149914f0170c93a7..d399556abdef45d4fbb0fc1efd86657f1fe0be0c 100644 (file)
@@ -177,7 +177,7 @@ if conf.has('WITH_LXC')
 
   virt_install_dirs += [
     localstatedir / 'lib' / 'libvirt' / 'lxc',
-    runstatedir / 'libvirt' / 'lxc',
     localstatedir / 'log' / 'libvirt' / 'lxc',
+    runstatedir / 'libvirt' / 'lxc',
   ]
 endif
index 5f82f687c143026858a80bfe1cbcb75f0d9e2c53..b23c96353ff5157bd8f60b1784fcfe5ef21dfca5 100644 (file)
@@ -174,12 +174,12 @@ if conf.has('WITH_QEMU')
   endif
 
   virt_install_dirs += [
-    localstatedir / 'lib' / 'libvirt' / 'qemu',
-    runstatedir / 'libvirt' / 'qemu',
     localstatedir / 'cache' / 'libvirt' / 'qemu',
-    localstatedir / 'log' / 'libvirt' / 'qemu',
+    localstatedir / 'lib' / 'libvirt' / 'qemu',
     localstatedir / 'lib' / 'libvirt' / 'swtpm',
-    runstatedir / 'libvirt' / 'qemu' / 'swtpm',
+    localstatedir / 'log' / 'libvirt' / 'qemu',
     localstatedir / 'log' / 'swtpm' / 'libvirt' / 'qemu',
+    runstatedir / 'libvirt' / 'qemu',
+    runstatedir / 'libvirt' / 'qemu' / 'swtpm',
   ]
 endif