commit: 004d9ebd9fca5cbdd09d4f5b35943ef5270a2227 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org> AuthorDate: Mon Aug 23 17:21:19 2021 +0000 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org> CommitDate: Mon Aug 23 17:21:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=004d9ebd
profiles/prefix/make.default: set TMPFILES_OPTIONAL to unbreak Prefix systemd-tmpfiles isn't very friendly for non-Linux, that put aside, tmpfiles aren't really used in Prefix; the host reboots, not the Prefix Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org> profiles/prefix/make.defaults | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/profiles/prefix/make.defaults b/profiles/prefix/make.defaults index cf9a80a8525..d510dcaff27 100644 --- a/profiles/prefix/make.defaults +++ b/profiles/prefix/make.defaults @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # Some USE-flags that only die-hards don't want: @@ -7,3 +7,8 @@ # ncurses: a nice working console drawing library # ssl: encrypted connections are a nice feature USE="readline zlib ncurses ssl" + +# disable tmpfiles eclass depending on virtual/tmpfiles, which currently +# only resolves to systemd-tmpfiles and that one isn't even close to +# compilation on non-Linux (musl already is a challenge). +TMPFILES_OPTIONAL=yes_please
