aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--meson.build5
1 files changed, 4 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 307fed0a..e8f13b71 100644
--- a/meson.build
+++ b/meson.build
@@ -334,10 +334,13 @@ if systemdunitdir == ''
systemdunitdir = prefixdir / 'lib' / 'systemd' / 'system'
systemd = dependency('systemd', required: false)
if systemd.found()
- systemdunitdir = systemd.get_variable(
+ systemdsystemunitdir = systemd.get_variable(
pkgconfig: 'systemdsystemunitdir',
default_value: systemdunitdir,
)
+ if systemdsystemunitdir.startswith(prefixdir / '')
+ systemdunitdir = systemdsystemunitdir
+ endif
endif
endif