xserver: Branch 'master'

Adam Jackson ajax at kemper.freedesktop.org
Mon May 7 16:24:07 UTC 2018


 include/meson.build |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1a3e4a2f6722048c5c7c4c1a9d6748e68a895a3e
Author: Aaron Plattner <aplattner at nvidia.com>
Date:   Fri May 4 15:09:22 2018 -0700

    meson: Define DEFAULT_LIBRARY_PATH as join_paths(get_option('prefix'), get_option('libdir'))
    
    'libdir' defaults to 'lib', so running X -showDefaultLibPath just prints 'lib'
    instead of '/usr/lib' or '/usr/local/lib'. Use joint_paths() to get the correct
    full path.
    
    Signed-off-by: Aaron Plattner <aplattner at nvidia.com>
    Reviewed-by: Thierry Reding <treding at nvidia.com>

diff --git a/include/meson.build b/include/meson.build
index 691e9f074..50ea1c3ba 100644
--- a/include/meson.build
+++ b/include/meson.build
@@ -316,7 +316,7 @@ xorg_data.set_quoted('DEFAULT_LOGDIR', log_dir)
 xorg_data.set_quoted('DEFAULT_LOGPREFIX', 'Xorg.')
 xorg_data.set_quoted('FALLBACK_INPUT_DRIVER', 'libinput')
 xorg_data.set_quoted('DEFAULT_MODULE_PATH', join_paths(get_option('prefix'), module_dir))
-xorg_data.set_quoted('DEFAULT_LIBRARY_PATH', get_option('libdir'))
+xorg_data.set_quoted('DEFAULT_LIBRARY_PATH', join_paths(get_option('prefix'), get_option('libdir')))
 xorg_data.set_quoted('__XSERVERNAME__', 'Xorg')
 xorg_data.set('XSERVER_LIBPCIACCESS', get_option('pciaccess'))
 xorg_data.set_quoted('PCI_TXT_IDS_PATH', '')


More information about the xorg-commit mailing list