From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7DD221580B9 for ; Mon, 23 Aug 2021 17:23:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2BB8E0A97; Mon, 23 Aug 2021 17:22:59 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A5DEAE0A97 for ; Mon, 23 Aug 2021 17:22:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E3475340817 for ; Mon, 23 Aug 2021 17:22:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 08B3E7B2 for ; Mon, 23 Aug 2021 17:22:56 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1629739279.004d9ebd9fca5cbdd09d4f5b35943ef5270a2227.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/prefix/ X-VCS-Repository: repo/gentoo X-VCS-Files: profiles/prefix/make.defaults X-VCS-Directories: profiles/prefix/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 004d9ebd9fca5cbdd09d4f5b35943ef5270a2227 X-VCS-Branch: master Date: Mon, 23 Aug 2021 17:22:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d8dfdf97-8619-451c-90f2-ab4a13af838e X-Archives-Hash: 1adc9711d884044e4d19e03dfb8367d6 commit: 004d9ebd9fca5cbdd09d4f5b35943ef5270a2227 Author: Fabian Groffen gentoo org> AuthorDate: Mon Aug 23 17:21:19 2021 +0000 Commit: Fabian Groffen gentoo 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 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