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 5DB9615800F for ; Thu, 12 Jan 2023 22:55:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55961E0948; Thu, 12 Jan 2023 22:55:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 36C5CE0948 for ; Thu, 12 Jan 2023 22:55:42 +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 189F5335D3B for ; Thu, 12 Jan 2023 22:55:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4CD7D771 for ; Thu, 12 Jan 2023 22:55:39 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1673564136.68ea4dcfcb973282c49c8cd186dc2cb57d3673a8.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/spiped/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/spiped/files/spiped.initd X-VCS-Directories: net-misc/spiped/files/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 68ea4dcfcb973282c49c8cd186dc2cb57d3673a8 X-VCS-Branch: master Date: Thu, 12 Jan 2023 22:55:39 +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: 871e36cf-cf68-423f-b6dd-7aef36857011 X-Archives-Hash: c3d695e3b5601e025167fc9b19f8a32b commit: 68ea4dcfcb973282c49c8cd186dc2cb57d3673a8 Author: Patrice Clement gentoo org> AuthorDate: Thu Jan 12 22:54:28 2023 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Jan 12 22:55:36 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68ea4dcf net-misc/spiped: switch string cmp to POSIX sh Closes: https://bugs.gentoo.org/849329 Signed-off-by: Patrice Clement gentoo.org> net-misc/spiped/files/spiped.initd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/spiped/files/spiped.initd b/net-misc/spiped/files/spiped.initd index 80a164c64999..ce94315c0a6a 100644 --- a/net-misc/spiped/files/spiped.initd +++ b/net-misc/spiped/files/spiped.initd @@ -21,7 +21,7 @@ depend() { } checkconfig() { - if [[ ! "$IS_CONFIGURED" == "yes" ]]; then + if [ ! "$IS_CONFIGURED" = "yes" ]; then eerror "You need to setup /etc/conf.d/spiped first!" return 1 fi