diff options
author | William Hubbs <williamh@gentoo.org> | 2016-12-23 11:31:50 -0600 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2016-12-23 11:38:42 -0600 |
commit | 1fa75a8fbef3a4d6e1bcc858b9b4a984eeb14201 (patch) | |
tree | 117e519078f013e6116dafeed2c211d21de3f608 /eclass/tmpfiles.eclass | |
parent | net-fs/smbnetfs: drop samba[client] dependency (diff) | |
download | gentoo-1fa75a8fbef3a4d6e1bcc858b9b4a984eeb14201.tar.gz gentoo-1fa75a8fbef3a4d6e1bcc858b9b4a984eeb14201.tar.bz2 gentoo-1fa75a8fbef3a4d6e1bcc858b9b4a984eeb14201.zip |
tmpfiles.eclass: fix call to tmpfiles for #603342
Diffstat (limited to 'eclass/tmpfiles.eclass')
-rw-r--r-- | eclass/tmpfiles.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/tmpfiles.eclass b/eclass/tmpfiles.eclass index e59f200ed034..9cede4dfe39e 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" |