From: Sven Eden Date: Wed, 7 Mar 2018 16:39:55 +0000 (+0100) Subject: systemdstatedir is not used anywhere and leads to an empty directory being created... X-Git-Tag: v235.3~7 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=1728ddaa8e7fcd05203ba8a21d3bf988b9bd26fa;p=elogind.git systemdstatedir is not used anywhere and leads to an empty directory being created upon install. -> removed. --- diff --git a/meson.build b/meson.build index 469c2b9bc..df90f89e2 100644 --- a/meson.build +++ b/meson.build @@ -154,7 +154,6 @@ factorydir = join_paths(datadir, 'factory') docdir = '-'.join([join_paths(datadir, 'doc/elogind'), meson.project_version()]) testsdir = join_paths(prefixdir, 'lib/elogind/tests') -systemdstatedir = join_paths(localstatedir, 'lib/elogind') randomseeddir = join_paths(localstatedir, 'lib/elogind') #endif // 0 @@ -2659,7 +2658,9 @@ install_data('README', 'src/libelogind/sd-bus/GVARIANT-SERIALIZATION', install_dir : docdir) -meson.add_install_script('sh', '-c', mkdir_p.format(systemdstatedir)) +#if 0 /// UNNEEDED by elogind +# meson.add_install_script('sh', '-c', mkdir_p.format(systemdstatedir)) +#endif // 0 meson.add_install_script('sh', '-c', 'touch $DESTDIR@0@'.format(prefixdir)) ############################################################