X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=meson.build;h=e86454d79cc1d5a308ee9b4dce65685f1eec2d5c;hb=237d12f368c890194da2c71f5df85a7e00f2dc2a;hp=ab48912649f81f80c8de13035f1a342fc710c543;hpb=d17bd107e0b8774c280aa8bf7682ec850ed9c439;p=platform%2Fupstream%2Fat-spi2-core.git diff --git a/meson.build b/meson.build index ab48912..e86454d 100644 --- a/meson.build +++ b/meson.build @@ -28,6 +28,7 @@ atspi_datadir = join_paths(atspi_prefix, get_option('datadir')) atspi_libexecdir = join_paths(atspi_prefix, get_option('libexecdir')) atspi_sysconfdir = join_paths(atspi_prefix, get_option('sysconfdir')) atspi_libdir = join_paths(atspi_prefix, get_option('libdir')) +atspi_bindir = join_paths(atspi_prefix, get_option('bindir')) atspi_includedir = join_paths(atspi_prefix, get_option('includedir')) if get_option('dbus_services_dir') != 'default' @@ -42,6 +43,12 @@ else systemd_user_dir = join_paths(get_option('prefix'), 'lib/systemd/user') endif +if get_option('systemd_system_dir') != 'default' + systemd_system_dir = get_option('systemd_system_dir') +else + systemd_system_dir = join_paths(get_option('prefix'), 'lib/systemd/system') +endif + # Dependencies libdbus_req_version = '>= 1.5' glib_req_version = '>= 2.32.0'