install: Don't distribute dbus definition

Instead, require virtboard to provide it.
This commit is contained in:
Dorota Czaplejewicz
2019-07-02 13:53:40 +00:00
parent cb641bd221
commit 61a5e8d4fd
7 changed files with 14 additions and 27 deletions

View File

@ -19,7 +19,12 @@ endif
prefix = get_option('prefix')
datadir = join_paths(prefix, get_option('datadir'))
pkgdatadir = join_paths(datadir, meson.project_name())
dbusdir = join_paths(datadir, 'dbus-1/interfaces')
if get_option('depdatadir') == ''
depdatadir = datadir
else
depdatadir = get_option('depdatadir')
endif
dbusdir = join_paths(depdatadir, 'dbus-1/interfaces')
subdir('data')
subdir('protocols')