diff options
author | Jan Remmet <j.remmet@phytec.de> | 2017-05-09 12:00:02 +0200 |
---|---|---|
committer | Stefan Müller-Klieser <s.mueller-klieser@phytec.de> | 2017-06-07 11:27:11 +0200 |
commit | 32ede39ba938b4a5331fa02052ea53f2b52b1d0e (patch) | |
tree | 26d63b64f09e54b2c0f6c00a2537671869b64017 | |
parent | 2bdc917bdfecdb19b50304867568f1fee77d764f (diff) | |
download | meta-yogurt-32ede39ba938b4a5331fa02052ea53f2b52b1d0e.tar.bz2 meta-yogurt-32ede39ba938b4a5331fa02052ea53f2b52b1d0e.zip |
systemd: refix waring for systemd-tmpfiles
Fix from commit 3a03519e2b4633a4107452a3a6e090a586f17ce0 didn't work
anymore. tmp.conf changed upstrem
https://github.com/systemd/systemd/commit/822cd601357f6f45d0176ae38fe9f86077462f06
Signed-off-by: Jan Remmet <j.remmet@phytec.de>
Signed-off-by: Stefan Müller-Klieser <s.mueller-klieser@phytec.de>
-rw-r--r-- | recipes-core/systemd/systemd_%.bbappend | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-core/systemd/systemd_%.bbappend b/recipes-core/systemd/systemd_%.bbappend index 3ef7b1b..0d099b0 100644 --- a/recipes-core/systemd/systemd_%.bbappend +++ b/recipes-core/systemd/systemd_%.bbappend @@ -35,6 +35,6 @@ do_install_append () { # meta/recipes-core/systemd/systemd/00-create-volatile.conf # the line must be removed completely in tmp.conf. do_install_append() { - sed -i 's/^v \/var\/tmp.*$//g' \ + sed -i 's/^q \/var\/tmp.*$//g' \ ${D}${exec_prefix}/lib/tmpfiles.d/tmp.conf } |