This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch devs/devilhorns/apos
in repository efl.

View the commit online.

commit f487483f280c4a75d63ec36fb7552ce9e907cd47
Author: Christopher Michael <[email protected]>
AuthorDate: Sun Feb 8 13:54:05 2026 -0600

    efl: Fix meson error when getting systemd user unit dir
    
    Small patch to fix the warning message due to deprecated
    get_pkgconfig_variable usage
---
 systemd-services/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/systemd-services/meson.build b/systemd-services/meson.build
index a17790e857..b4d96e8cae 100644
--- a/systemd-services/meson.build
+++ b/systemd-services/meson.build
@@ -1,7 +1,7 @@
 if get_option('systemd') == true
   sys_dep = dependency('systemd', required: false)
   if sys_dep.found()
-    sys_dir = sys_dep.get_pkgconfig_variable('systemduserunitdir')
+    sys_dir = sys_dep.get_variable(pkgconfig: 'systemduserunitdir')
   else
     sys_dir = join_paths(dir_lib, 'systemd', 'user')
   endif

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to