commit: 1fa75a8fbef3a4d6e1bcc858b9b4a984eeb14201
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 23 17:31:50 2016 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Fri Dec 23 17:38:42 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fa75a8f
tmpfiles.eclass: fix call to tmpfiles for #603342
eclass/tmpfiles.eclass | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/eclass/tmpfiles.eclass b/eclass/tmpfiles.eclass
index e59f200..9cede4d 100644
--- a/eclass/tmpfiles.eclass
+++ b/eclass/tmpfiles.eclass
@@ -112,8 +112,8 @@ tmpfiles_process() {
if type systemd-tmpfiles &> /dev/null; then
systemd-tmpfiles --create "$@"
- elif type opentmpfiles &> /dev/null; then
- opentmpfiles --create "$@"
+ elif type tmpfiles &> /dev/null; then
+ tmpfiles --create "$@"
fi
if [[ $? -ne 0 ]]; then
ewarn "The tmpfiles processor exited with a non-zero exit code"