meson: remove unnecessary join_path() with get_option('prefix')

Meson will expand the paths for you.
This commit is contained in:
Tristan Partin
2023-07-28 14:04:48 -05:00
parent f40587a38a
commit 602a4d7fa7
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ sysprofd_sources = [
ipc_service_src,
]
pkglibexecdir = join_paths(get_option('prefix'), get_option('libexecdir'))
pkglibexecdir = get_option('libexecdir')
sysprofd_deps = [
glib_dep,