tmpfiles.eclass: fix call to tmpfiles for #603342
authorWilliam Hubbs <williamh@gentoo.org>
Fri, 23 Dec 2016 17:31:50 +0000 (11:31 -0600)
committerWilliam Hubbs <williamh@gentoo.org>
Fri, 23 Dec 2016 17:38:42 +0000 (11:38 -0600)
eclass/tmpfiles.eclass

index e59f200ed0349c59f43b26024f7ccfec39a28bd5..9cede4dfe39e6fd757b79c01aa494420882efdf5 100644 (file)
@@ -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"