diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2017-07-13 22:59:55 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-07-24 18:57:33 +0200 |
commit | 00eacac42f3b676022d6a0585bb9b375f8da3f06 (patch) | |
tree | 7d631a92dd3bc30f36781727a4e195fe5d1e8d96 /meta-filesystems/recipes-utils/udevil/files/0002-etc-Makefile.am-Use-systemd_unitdir-instead-of-libdi.patch | |
parent | a246dd26a5af8f9b23a98756ce0bcfc21d91a17e (diff) | |
download | meta-openembedded-00eacac42f3b676022d6a0585bb9b375f8da3f06.tar.gz |
recipes-utils: Add recipe for udevil
udevil is a command line Linux program which mounts and unmounts
removable devices without a password.
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-filesystems/recipes-utils/udevil/files/0002-etc-Makefile.am-Use-systemd_unitdir-instead-of-libdi.patch')
-rw-r--r-- | meta-filesystems/recipes-utils/udevil/files/0002-etc-Makefile.am-Use-systemd_unitdir-instead-of-libdi.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-filesystems/recipes-utils/udevil/files/0002-etc-Makefile.am-Use-systemd_unitdir-instead-of-libdi.patch b/meta-filesystems/recipes-utils/udevil/files/0002-etc-Makefile.am-Use-systemd_unitdir-instead-of-libdi.patch new file mode 100644 index 0000000000..f014a0f537 --- /dev/null +++ b/meta-filesystems/recipes-utils/udevil/files/0002-etc-Makefile.am-Use-systemd_unitdir-instead-of-libdi.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | From 80b087193698632e525b90d45b4a49e61e343e1c Mon Sep 17 00:00:00 2001 | ||
2 | From: Krzysztof Kozlowski <krzk@kernel.org> | ||
3 | Date: Thu, 13 Jul 2017 21:30:35 +0200 | ||
4 | Subject: [PATCH] etc: Makefile.am: Use systemd_unitdir instead of libdir | ||
5 | |||
6 | Proper directory for installing systemd services is systemd_unitdir, not | ||
7 | libdir. | ||
8 | |||
9 | Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> | ||
10 | --- | ||
11 | etc/Makefile.am | 6 +++--- | ||
12 | 1 file changed, 3 insertions(+), 3 deletions(-) | ||
13 | |||
14 | diff --git a/etc/Makefile.am b/etc/Makefile.am | ||
15 | index 9b6e7522c20f..6d663241a72f 100644 | ||
16 | --- a/etc/Makefile.am | ||
17 | +++ b/etc/Makefile.am | ||
18 | @@ -16,8 +16,8 @@ if ADD_SYSTEMD | ||
19 | test -f $(DESTDIR)/$(sysconfdir)/conf.d/devmon || $(INSTALL_DATA) \ | ||
20 | $(srcdir)/systemd/devmon \ | ||
21 | $(DESTDIR)/$(sysconfdir)/conf.d/devmon | ||
22 | - test -d $(DESTDIR)/$(libdir)/systemd/system || \ | ||
23 | - mkdir -p -- $(DESTDIR)/$(libdir)/systemd/system | ||
24 | + test -d $(DESTDIR)/$(systemd_unitdir)/system || \ | ||
25 | + mkdir -p -- $(DESTDIR)/$(systemd_unitdir)/system | ||
26 | $(INSTALL_DATA) $(srcdir)/systemd/devmon@.service \ | ||
27 | - $(DESTDIR)/$(libdir)/systemd/system/devmon@.service | ||
28 | + $(DESTDIR)/$(systemd_unitdir)/system/devmon@.service | ||
29 | endif | ||
30 | -- | ||
31 | 2.11.0 | ||
32 | |||