From: Simon McVittie Date: Wed, 13 Jul 2022 18:28:41 +0000 (+0100) Subject: meson: Create /var/lib/dbus X-Git-Tag: dbus-1.15.0~32^2~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d3756f6fbc8fd03065f5f5e9db29aeb795e92bf;p=thirdparty%2Fdbus.git meson: Create /var/lib/dbus This holds the machine ID created by dbus-uuidgen. Signed-off-by: Simon McVittie --- diff --git a/tools/meson.build b/tools/meson.build index 2146142b7..4c3d9d228 100644 --- a/tools/meson.build +++ b/tools/meson.build @@ -106,3 +106,8 @@ endif install_data('GetAllMatchRules.py', install_dir: docs_dir / 'examples', ) + +# Create the empty directory to hold the machine ID +install_emptydirs += [ + get_option('localstatedir') / 'lib' / 'dbus', +]