From 4b24c19fa72c91ad38701efa19e69618ead9991e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B0=D0=BC=D1=98=D0=B0=D0=BD=20=D0=93=D0=B5=D0=BE?= =?UTF-8?q?=D1=80=D0=B3=D0=B8=D0=B5=D0=B2=D1=81=D0=BA=D0=B8?= Date: Tue, 10 Sep 2019 14:12:52 +0200 Subject: [PATCH] add prefix to the configuration data --- meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meson.build b/meson.build index 33069cc..4bcd572 100644 --- a/meson.build +++ b/meson.build @@ -64,7 +64,9 @@ libudev = dependency('libudev', required: get_option('libudev')) libmpdclient = dependency('libmpdclient', required: get_option('mpd')) systemd = dependency('systemd', required: get_option('systemd')) +prefix = get_option('prefix') conf_data = configuration_data() +conf_data.set('prefix', prefix) if systemd.found() user_units_dir = systemd.get_pkgconfig_variable('systemduserunitdir')