summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Labastie <pierre.labastie@neuf.fr>2022-03-05 11:09:14 +0100
committerPierre Labastie <pierre.labastie@neuf.fr>2022-03-05 11:09:14 +0100
commit9cca8a244b92356b1ba747672f2755fe208a76b2 (patch)
tree3334b65e5004d80dd4e812af0c2979e48e23e743
parent2f81d690148cd80909083e0390ba50fb1e431b39 (diff)
meson.build: Output correct paths for sbindir and datadir
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 5c2d7db..5c0bc27 100644
--- a/meson.build
+++ b/meson.build
@@ -130,8 +130,8 @@ output += ' prefix: ' + get_option('prefix')
output += ' libdir: ' + get_option('libdir')
output += ' libexecdir: ' + get_option('prefix') / get_option('libexecdir')
output += ' bindir: ' + get_option('prefix') / get_option('bindir')
-output += ' sbindir: ' + get_option('prefix') / get_option('datadir')
-output += ' datadir: ' + get_option('prefix') / get_option('sbindir')
+output += ' sbindir: ' + get_option('prefix') / get_option('sbindir')
+output += ' datadir: ' + get_option('prefix') / get_option('datadir')
output += ' sysconfdir: ' + get_option('sysconfdir')
output += ' localstatedir: ' + get_option('prefix') / get_option('localstatedir')
output += ' historydir: ' + historydir