From 432a49732bf7ea84fa952aa1cfe8e084cd71a8c1 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Mon, 6 Feb 2023 14:36:11 +0100 Subject: [PATCH] build: Use prefixdir directly on sysconfdir The sysconfdir is an explicit path '/etc' and the muon implementation of join_paths is dropping the prefixdir, thus we need to string concanate the syscondfir path instead of using the join_paths function. Signed-off-by: Daniel Wagner --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index c05dc47f..6eb27d5f 100644 --- a/meson.build +++ b/meson.build @@ -20,7 +20,7 @@ prefixdir = get_option('prefix') datadir = join_paths(prefixdir, get_option('datadir')) mandir = join_paths(prefixdir, get_option('mandir')) sbindir = join_paths(prefixdir, get_option('sbindir')) -sysconfdir = join_paths(prefixdir, get_option('sysconfdir')) +sysconfdir = prefixdir + get_option('sysconfdir') udevrulesdir = join_paths(prefixdir, get_option('udevrulesdir')) dracutrulesdir = join_paths(prefixdir, get_option('dracutrulesdir')) -- 2.50.1