From c6efd4e8696233c8c180a10dbcbcb035e1bd8536 Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Wed, 4 Dec 2024 12:00:00 +0000 Subject: meson.build: fix pam_namespace.service installation with custom prefix When build is configured with a custom prefix, ignore the value of systemdsystemunitdir pkgconfig variable if it doesn't start with that custom prefix. Resolves: https://github.com/linux-pam/linux-pam/issues/863 --- meson.build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3