diff options
author | Dylan Baker <[email protected]> | 2018-01-23 10:28:08 -0800 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-01-24 13:10:32 -0800 |
commit | 5781c3d1db4a01e77f416c1685025c4d830ae87d (patch) | |
tree | b2bb343292291e9d8ab56137c7976527ea470f54 /src/util/meson.build | |
parent | d2414e64e443700b764dcd1bd7ee46bbf7a9401a (diff) |
meson: correctly set SYSCONFDIR for loading dirrc
Fixes: d1992255bb29 ("meson: Add build Intel "anv" vulkan driver")
Reported-by: Marc Dietrich <[email protected]>
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/util/meson.build')
-rw-r--r-- | src/util/meson.build | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/util/meson.build b/src/util/meson.build index fa591c92e56..b23dba3a985 100644 --- a/src/util/meson.build +++ b/src/util/meson.build @@ -112,8 +112,12 @@ libxmlconfig = static_library( files_xmlconfig, include_directories : inc_common, dependencies : [dep_expat, dep_m], - c_args : [c_msvc_compat_args, c_vis_args, - '-DSYSCONFDIR="@0@"'.format(get_option('sysconfdir'))], + c_args : [ + c_msvc_compat_args, c_vis_args, + '-DSYSCONFDIR="@0@"'.format( + join_paths(get_option('prefix'), get_option('sysconfdir')) + ), + ], build_by_default : false, ) |