From: Daniel Wagner Date: Mon, 6 Feb 2023 13:36:11 +0000 (+0100) Subject: build: Use prefixdir directly on sysconfdir X-Git-Tag: v2.4~78^2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=432a49732bf7ea84fa952aa1cfe8e084cd71a8c1;p=users%2Fsagi%2Fnvme-cli.git 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 --- 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'))