aboutsummaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2019-03-10 22:59:15 +0100
committerLibravatar Brian Ashworth <bosrsf04@gmail.com>2019-03-10 18:18:08 -0400
commita418349c188288ebe1e8aeb9cb002e484d3e1f17 (patch)
tree14c625a2bc69dc5e860e15b2a2ac9aae2aa416d5 /meson.build
parentMake raw keysyms take precedence over translated (diff)
downloadsway-a418349c188288ebe1e8aeb9cb002e484d3e1f17.tar.gz
sway-a418349c188288ebe1e8aeb9cb002e484d3e1f17.tar.zst
sway-a418349c188288ebe1e8aeb9cb002e484d3e1f17.zip
meson: use pkg-config var for scdoc path
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index a08b2603..02b5d606 100644
--- a/meson.build
+++ b/meson.build
@@ -57,7 +57,7 @@ elogind = dependency('libelogind', version: '>=239', required: false)
57xcb = dependency('xcb', required: get_option('xwayland')) 57xcb = dependency('xcb', required: get_option('xwayland'))
58math = cc.find_library('m') 58math = cc.find_library('m')
59rt = cc.find_library('rt') 59rt = cc.find_library('rt')
60git = find_program('git', required: false) 60git = find_program('git', native: true, required: false)
61 61
62# Try first to find wlroots as a subproject, then as a system dependency 62# Try first to find wlroots as a subproject, then as a system dependency
63wlroots_version = '>=0.4.1' 63wlroots_version = '>=0.4.1'
@@ -97,8 +97,8 @@ conf_data.set10('HAVE_TRAY', have_tray)
97 97
98scdoc = dependency('scdoc', version: '>=1.9.2', native: true, required: get_option('man-pages')) 98scdoc = dependency('scdoc', version: '>=1.9.2', native: true, required: get_option('man-pages'))
99if scdoc.found() 99if scdoc.found()
100 scdoc_prog = find_program('scdoc') 100 scdoc_prog = find_program(scdoc.get_pkgconfig_variable('scdoc'), native: true)
101 sh = find_program('sh') 101 sh = find_program('sh', native: true)
102 mandir = get_option('mandir') 102 mandir = get_option('mandir')
103 man_files = [ 103 man_files = [
104 'sway/sway.1.scd', 104 'sway/sway.1.scd',