From: Daniel Wagner Date: Mon, 6 Feb 2023 13:48:43 +0000 (+0100) Subject: build: Use prefixdir directly on sysconfdir X-Git-Tag: v1.4~39^2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=f6100dd16b491f1918567237e5a337d8d32cda80;p=users%2Fsagi%2Flibnvme.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 cf72d6d8..588f3e52 100644 --- a/meson.build +++ b/meson.build @@ -31,7 +31,7 @@ includedir = join_paths(prefixdir, get_option('includedir')) datadir = join_paths(prefixdir, get_option('datadir')) mandir = join_paths(prefixdir, get_option('mandir')) bindir = join_paths(prefixdir, get_option('bindir')) -sysconfdir = join_paths(prefixdir, get_option('sysconfdir')) +sysconfdir = prefixdir + get_option('sysconfdir') ################################################################################ conf = configuration_data()