From 9cca8a244b92356b1ba747672f2755fe208a76b2 Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Sat, 5 Mar 2022 11:09:14 +0100 Subject: [PATCH] meson.build: Output correct paths for sbindir and datadir --- meson.build | 4 ++-- 1 file 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