summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2022-02-15 08:14:49 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2022-02-15 10:18:21 +1000
commit34315942e5801a636745d6a9b682ef2fad432eda (patch)
tree1241748beeb65fb39278dd01c200ddce119ac7bf /meson.build
parent985392cf38b337164d6d957eb4599dcbca519763 (diff)
downloadxf86-input-wacom-34315942e5801a636745d6a9b682ef2fad432eda.tar.gz
meson.build: use datadir, not sysconfdir, for the xorg.conf files
Mixup of the two, sysconfdir is /etc which is not what we want for a normal install of the driver Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 0b4bfe9..237a669 100644
--- a/meson.build
+++ b/meson.build
@@ -9,7 +9,7 @@ wacom_version = meson.project_version().split('.')
dir_man1 = get_option('prefix') / get_option('mandir') / 'man1'
dir_man4 = get_option('prefix') / get_option('mandir') / 'man4'
dir_bin = get_option('prefix') / get_option('bindir')
-dir_x11_config = get_option('prefix') / get_option('sysconfdir') / 'X11' / 'xorg.conf.d'
+dir_x11_config = get_option('prefix') / get_option('datadir') / 'X11' / 'xorg.conf.d'
dir_pkgconf = get_option('prefix') / get_option('libdir') / 'pkgconfig'
dir_udev = get_option('prefix') / 'lib' / 'udev'
dir_systemd = get_option('prefix') / 'lib' / 'systemd'