From fb025e875f55e4ae9610287f7cc4654950dde6ac Mon Sep 17 00:00:00 2001 From: Mike Gilbert Date: Thu, 25 Apr 2019 17:44:59 -0400 Subject: tmpfiles.eclass: fix ROOT check for EAPI 7 Signed-off-by: Mike Gilbert --- eclass/tmpfiles.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eclass/tmpfiles.eclass') 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" -- cgit v1.2.3-65-gdbad