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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6D7A1158092 for ; Thu, 16 Jun 2022 16:30:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FE5FE09BB; Thu, 16 Jun 2022 16:30:57 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 79E8CE09BB for ; Thu, 16 Jun 2022 16:30:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B6212342104 for ; Thu, 16 Jun 2022 16:30:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61C5150A for ; Thu, 16 Jun 2022 16:30:55 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1655397032.035d812e10b8a88fed4e0e7294f0dd3d3790f861.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/gdm/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-base/gdm/gdm-42.0.ebuild X-VCS-Directories: gnome-base/gdm/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 035d812e10b8a88fed4e0e7294f0dd3d3790f861 X-VCS-Branch: master Date: Thu, 16 Jun 2022 16:30:55 +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: 841986d8-3f33-44c3-a750-a0e49349028a X-Archives-Hash: 45be8849842af20e8da62d99c184a75d commit: 035d812e10b8a88fed4e0e7294f0dd3d3790f861 Author: Thomas Bracht Laumann Jespersen laumann xyz> AuthorDate: Wed Jun 8 19:50:04 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jun 16 16:30:32 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=035d812e gnome-base/gdm: quote variable EROOT Signed-off-by: Thomas Bracht Laumann Jespersen laumann.xyz> Signed-off-by: Sam James gentoo.org> gnome-base/gdm/gdm-42.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnome-base/gdm/gdm-42.0.ebuild b/gnome-base/gdm/gdm-42.0.ebuild index 7a16387075ff..d6c9b14f6f70 100644 --- a/gnome-base/gdm/gdm-42.0.ebuild +++ b/gnome-base/gdm/gdm-42.0.ebuild @@ -196,7 +196,7 @@ pkg_postinst() { # bug #669146; gdm may crash if /var/lib/gdm subdirs are not owned by gdm:gdm ret=0 - ebegin "Fixing "${EROOT}"/var/lib/gdm ownership" + ebegin "Fixing ${EROOT}/var/lib/gdm ownership" chown --no-dereference gdm:gdm "${EROOT}/var/lib/gdm" || ret=1 for d in "${EROOT}/var/lib/gdm/"{.cache,.color,.config,.dbus,.local}; do [[ ! -e "${d}" ]] || chown --no-dereference -R gdm:gdm "${d}" || ret=1