about summary refs log tree commit diff
path: root/pkgs/by-name/sw/swayosd/swayosd_systemd_paths.patch
blob: 189c761e9d36374e54a0eac22320251e7846b980 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
diff --git a/data/meson.build b/data/meson.build
index fc687a5..68decdf 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -1,5 +1,6 @@
 datadir = get_option('datadir')
 sysconfdir = get_option('sysconfdir')
+libdir = get_option('libdir')
 
 # LICENSE
 install_data(
@@ -41,11 +42,7 @@ configure_file(
 
 # Systemd service unit
 systemd = dependency('systemd', required: false)
-if systemd.found()
-  systemd_service_install_dir = systemd.get_variable(pkgconfig :'systemdsystemunitdir')
-else
-  systemd_service_install_dir = join_paths(libdir, 'systemd', 'system')
-endif
+systemd_service_install_dir = join_paths(libdir, 'systemd', 'system')
 
 configure_file(
   configuration: conf_data,