diff options
author | Dylan Baker <[email protected]> | 2017-09-28 13:59:04 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-10-09 13:42:44 -0700 |
commit | db9788420d4bc7b4a61eab38c0093af94274d00d (patch) | |
tree | ba8f7410552fa5103526c06f56313d0af99a57f1 /src/glx | |
parent | a47c525f3281a2753180e076c7e9b7772aff8f06 (diff) |
meson: Add support for configuring dri drivers directory.
v2: - drop with_ from dri_drivers_path variable (Eric A)
v3: - Move HAVE_X11_PLATFORM to the proper patch (Eric A)
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/glx')
-rw-r--r-- | src/glx/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/meson.build b/src/glx/meson.build index 70718df4d35..6853f5b3a16 100644 --- a/src/glx/meson.build +++ b/src/glx/meson.build @@ -106,7 +106,7 @@ elif with_windowsdri #] endif -dri_driver_dir = join_paths(get_option('prefix'), get_option('libdir'), 'dri') +dri_driver_dir = join_paths(get_option('prefix'), dri_drivers_path) if not with_glvnd gl_lib_name = 'GL' gl_lib_version = '1.2.0' |