projects
/
gentoo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b110719
)
tmpfiles.eclass: fix call to tmpfiles for #603342
author
William Hubbs
<williamh@gentoo.org>
Fri, 23 Dec 2016 17:31:50 +0000
(11:31 -0600)
committer
William Hubbs
<williamh@gentoo.org>
Fri, 23 Dec 2016 17:38:42 +0000
(11:38 -0600)
eclass/tmpfiles.eclass
patch
|
blob
|
history
diff --git
a/eclass/tmpfiles.eclass
b/eclass/tmpfiles.eclass
index e59f200ed0349c59f43b26024f7ccfec39a28bd5..9cede4dfe39e6fd757b79c01aa494420882efdf5 100644
(file)
--- 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
open
tmpfiles &> /dev/null; then
-
open
tmpfiles --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"