mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-02-03 13:30:27 +01:00
meson.build: don't install the quirks in a further 'quirks' subdirectory
install_subdir() by default also copies the 'quirks' directory, resulting in
the quirks files being in <datadir>/libinput/quirks/*.quirks as opposed to the
previous <datadir>/libinput/*.quirks.
Fixes 727dc44b04
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
ad54c0c8b3
commit
f15da0f108
1 changed files with 3 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ project('libinput', 'c',
|
|||
version : '1.15.900',
|
||||
license : 'MIT/Expat',
|
||||
default_options : [ 'c_std=gnu99', 'warning_level=2' ],
|
||||
meson_version : '>= 0.41.0')
|
||||
meson_version : '>= 0.45.0')
|
||||
|
||||
libinput_version = meson.project_version().split('.')
|
||||
|
||||
|
|
@ -310,7 +310,8 @@ config_h.set_quoted('LIBINPUT_QUIRKS_OVERRIDE_FILE', libinput_data_override_path
|
|||
config_h.set_quoted('LIBINPUT_QUIRKS_SRCDIR', dir_src_quirks)
|
||||
install_subdir('quirks',
|
||||
exclude_files: ['README.md'],
|
||||
install_dir : dir_data)
|
||||
install_dir : dir_data,
|
||||
strip_directory : true)
|
||||
|
||||
src_libquirks = [
|
||||
'src/quirks.c',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue