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 60940158012 for ; Tue, 13 Sep 2022 13:00:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81DEAE08F0; Tue, 13 Sep 2022 13:00:29 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 67FD5E08F0 for ; Tue, 13 Sep 2022 13:00:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2C75E33E3A9 for ; Tue, 13 Sep 2022 13:00:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B6AD576 for ; Tue, 13 Sep 2022 13:00:26 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1663074019.74bcb45716321e8c7dc8f63bda777b579027acf1.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/connman/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/connman/connman-1.42_pre20220828-r1.ebuild X-VCS-Directories: net-misc/connman/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: 74bcb45716321e8c7dc8f63bda777b579027acf1 X-VCS-Branch: master Date: Tue, 13 Sep 2022 13:00:26 +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: 63f43602-4c58-48a6-9555-352cee6e2984 X-Archives-Hash: 6d101baf0c7e86ef66f11ae671dcdf3a commit: 74bcb45716321e8c7dc8f63bda777b579027acf1 Author: Ben Kohler gentoo org> AuthorDate: Tue Sep 13 12:59:49 2022 +0000 Commit: Ben Kohler gentoo org> CommitDate: Tue Sep 13 13:00:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74bcb457 net-misc/connman: fix quoting Signed-off-by: Ben Kohler gentoo.org> net-misc/connman/connman-1.42_pre20220828-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-misc/connman/connman-1.42_pre20220828-r1.ebuild b/net-misc/connman/connman-1.42_pre20220828-r1.ebuild index 3481338abfeb..7bd768066253 100644 --- a/net-misc/connman/connman-1.42_pre20220828-r1.ebuild +++ b/net-misc/connman/connman-1.42_pre20220828-r1.ebuild @@ -56,9 +56,9 @@ src_prepare() { default eautoreconf - cp "${FILESDIR}"/${PN}.initd2 ${T} + cp "${FILESDIR}"/${PN}.initd2 "${T}" if use iwd; then - sed -i -e "s/need dbus/need dbus iwd/" ${T}/${PN}.initd2 || die + sed -i -e "s/need dbus/need dbus iwd/" "${T}"/${PN}.initd2 || die fi }