blob: 9bb3ec7dd6edbe834bbb87f08816738c8d79e193 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
From 25d6610d24cd24ae11a8e6abe6abfa76a8187e74 Mon Sep 17 00:00:00 2001
From: fundawang <fundawang@yeah.net>
Date: Sun, 17 Nov 2024 18:47:05 +0800
Subject: [PATCH] meson.build: fix variable name when dealing with
systemd-unit-dir
---
meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meson.build b/meson.build
index 139dc3f4..130f95f0 100644
--- a/meson.build
+++ b/meson.build
@@ -89,7 +89,7 @@ if dir_udev_rules == ''
endif
dir_systemd_unit = get_option('systemd-unit-dir')
-if dir_udev_rules == ''
+if dir_systemd_unit == ''
dir_systemd_unit = dir_systemd / 'systemd'
endif
|