summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2019-04-25 17:44:59 -0400
committerMike Gilbert <floppym@gentoo.org>2019-04-25 17:57:02 -0400
commitfb025e875f55e4ae9610287f7cc4654950dde6ac (patch)
treea9116831fd71203897c3e288b292b6c260d3504b /eclass/tmpfiles.eclass
parentdev-libs/libbulletml: EAPI-7 bump, https (diff)
downloadgentoo-fb025e875f55e4ae9610287f7cc4654950dde6ac.tar.gz
gentoo-fb025e875f55e4ae9610287f7cc4654950dde6ac.tar.bz2
gentoo-fb025e875f55e4ae9610287f7cc4654950dde6ac.zip
tmpfiles.eclass: fix ROOT check for EAPI 7
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'eclass/tmpfiles.eclass')
-rw-r--r--eclass/tmpfiles.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/tmpfiles.eclass b/eclass/tmpfiles.eclass
index a8bb9061ec8c..68478ffbcd69 100644
--- a/eclass/tmpfiles.eclass
+++ b/eclass/tmpfiles.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 2016-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: tmpfiles.eclass
@@ -113,7 +113,7 @@ tmpfiles_process() {
[[ ${#} -gt 0 ]] || die "${FUNCNAME}: Must specify at least one filename"
# Only process tmpfiles for the currently running system
- if [[ ${ROOT} != / ]]; then
+ if [[ ${ROOT:-/} != / ]]; then
ewarn "Warning: tmpfiles.d not processed on ROOT != /. If you do not use"
ewarn "a service manager supporting tmpfiles.d, you need to run"
ewarn "the following command after booting (or chroot-ing with all"