From 6759137f72bd9cd868cc2466472c97bdeebc6a6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= Date: Fri, 7 Jun 2024 21:37:47 +0100 Subject: [PATCH] meson: fix missing use of unitdir for systemd directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This conversion was missed in the previous commit: commit a7eb7de53171b4cdabc3d36524c468abfe2590fa Author: Daniel P. Berrangé Date: Thu Jun 6 12:57:08 2024 +0100 meson: allow systemd unitdir to be changed Reviewed-by: Ján Tomko Reported-by: Yaakov Selkowitz Signed-off-by: Daniel P. Berrangé --- tools/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/meson.build b/tools/meson.build index a58f5d4175..3f4e2a3c4b 100644 --- a/tools/meson.build +++ b/tools/meson.build @@ -343,7 +343,7 @@ if conf.has('WITH_LIBVIRTD') output: '@BASENAME@', configuration: tools_conf, install: true, - install_dir: prefix / 'lib' / 'systemd' / 'system', + install_dir: unitdir, ) endif endif