mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-04 23:28:05 +02:00
meson: Fix installing protocol.txt
One fix the constructed path, two actually install it. Signed-off-by: Adam Jackson <ajax@redhat.com> Reviewed-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
parent
e3baacacda
commit
ab063cf967
2 changed files with 6 additions and 1 deletions
|
|
@ -44,3 +44,8 @@ libxserver_main = static_library('libxserver_main',
|
|||
include_directories: inc,
|
||||
dependencies: common_dep,
|
||||
)
|
||||
|
||||
install_data(
|
||||
'protocol.txt',
|
||||
install_dir: serverconfigdir,
|
||||
)
|
||||
|
|
|
|||
|
|
@ -462,7 +462,7 @@ glx_inc = include_directories('glx')
|
|||
|
||||
top_srcdir_inc = include_directories('.')
|
||||
|
||||
serverconfigdir = join_paths(get_option('libdir'), '/xorg')
|
||||
serverconfigdir = join_paths(get_option('libdir'), 'xorg')
|
||||
|
||||
# Include must come first, as it sets up dix-config.h
|
||||
subdir('include')
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue