summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2022-02-21 09:56:17 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2022-02-21 09:59:22 +1000
commit72a596dff3405ba9410d81044928400c323a7e83 (patch)
treed6ea1d17c5e329f60aa0fd11c850fd931cd67ed0 /meson_options.txt
parentf412f8858c9ea569d70f469e971f9edc189a2628 (diff)
downloadxkeyboard-config-72a596dff3405ba9410d81044928400c323a7e83.tar.gz
meson: fix default value for the xorg symlinks
Documented as default=false but the actual default value was true. The intention of this was to default to false (since these have been deprecated since 2005) and have those that require it enable it explicitly. See ff3dcb932024ed13341938cded04142eda94600e.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 912d21d..39d433b 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -8,5 +8,5 @@ option('compat-rules',
description: 'create compatibility rules [default=true]')
option('xorg-rules-symlinks',
type: 'boolean',
- value: true,
+ value: false,
description: 'create "xorg" symlinks to the "base" rules files [default=false]')