From: Olaf Hering Date: Tue, 25 Jan 2022 13:17:23 +0000 (+0100) Subject: meson: recognize sles when guessing default_qemu_user X-Git-Tag: v8.1.0-rc1~295 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7d54a291383b42f302f9f68508c933fb6987f20b;p=thirdparty%2Flibvirt.git meson: recognize sles when guessing default_qemu_user NAME="SLES" VERSION="15-SP3" VERSION_ID="15.3" PRETTY_NAME="SUSE Linux Enterprise Server 15 SP3" ID="sles" ID_LIKE="suse" ANSI_COLOR="0;32" CPE_NAME="cpe:/o:suse:sles:15:sp3" DOCUMENTATION_URL="https://documentation.suse.com/" Signed-off-by: Olaf Hering Reviewed-by: Andrea Bolognani --- diff --git a/meson.build b/meson.build index ccb2b73624..0f0a71a2da 100644 --- a/meson.build +++ b/meson.build @@ -1667,6 +1667,7 @@ if not get_option('driver_qemu').disabled() os_release.contains('fedora') or os_release.contains('gentoo') or os_release.contains('rhel') or + os_release.contains('sles') or os_release.contains('suse')) default_qemu_user = 'qemu' default_qemu_group = 'qemu'