summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/systemd/systemd_246.2.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/systemd/systemd_246.2.bb')
-rw-r--r--meta/recipes-core/systemd/systemd_246.2.bb4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-core/systemd/systemd_246.2.bb b/meta/recipes-core/systemd/systemd_246.2.bb
index 238cd4741f..af10e4212b 100644
--- a/meta/recipes-core/systemd/systemd_246.2.bb
+++ b/meta/recipes-core/systemd/systemd_246.2.bb
@@ -232,7 +232,9 @@ do_install() {
232 232
233 install -d ${D}${sysconfdir}/udev/rules.d/ 233 install -d ${D}${sysconfdir}/udev/rules.d/
234 install -d ${D}${sysconfdir}/tmpfiles.d 234 install -d ${D}${sysconfdir}/tmpfiles.d
235 install -m 0644 ${WORKDIR}/*.rules ${D}${sysconfdir}/udev/rules.d/ 235 for rule in $(find ${WORKDIR} -maxdepth 1 -type f -name "*.rules"); do
236 install -m 0644 $rule ${D}${sysconfdir}/udev/rules.d/
237 done
236 238
237 install -m 0644 ${WORKDIR}/00-create-volatile.conf ${D}${sysconfdir}/tmpfiles.d/ 239 install -m 0644 ${WORKDIR}/00-create-volatile.conf ${D}${sysconfdir}/tmpfiles.d/
238 240