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 C6319158094 for ; Fri, 7 Oct 2022 11:28:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E9CDE0886; Fri, 7 Oct 2022 11:28:58 +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 54963E0886 for ; Fri, 7 Oct 2022 11:28:58 +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 4A8623410B7 for ; Fri, 7 Oct 2022 11:28:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9EBD2606 for ; Fri, 7 Oct 2022 11:28: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: <1665142093.baf9dd7e41f8fd7e14af116a6a5d2c1eff0c7c78.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/dvtm/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/dvtm/dvtm-0.15-r5.ebuild app-misc/dvtm/dvtm-9999.ebuild X-VCS-Directories: app-misc/dvtm/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: baf9dd7e41f8fd7e14af116a6a5d2c1eff0c7c78 X-VCS-Branch: master Date: Fri, 7 Oct 2022 11:28: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: e031b824-4ff4-4832-a516-030d2969f970 X-Archives-Hash: b58efdda2e755d1b645cddc1113eff46 commit: baf9dd7e41f8fd7e14af116a6a5d2c1eff0c7c78 Author: Petr Vaněk atlas cz> AuthorDate: Thu Oct 6 18:51:52 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Oct 7 11:28:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baf9dd7e app-misc/dvtm: remove unused local variable The msg local variable was used in `|| die` guard to change an error message when savedconfig use flag was set. The guard was removed in commit 398a42634f34 ("*/*: [QA] Remove redundant `|| die` guards"), but the variable was left behind. It is useless, time to remove it. Signed-off-by: Petr Vaněk atlas.cz> Signed-off-by: Sam James gentoo.org> app-misc/dvtm/dvtm-0.15-r5.ebuild | 2 -- app-misc/dvtm/dvtm-9999.ebuild | 2 -- 2 files changed, 4 deletions(-) diff --git a/app-misc/dvtm/dvtm-0.15-r5.ebuild b/app-misc/dvtm/dvtm-0.15-r5.ebuild index 84ea8eec9506..2f8d0464fa4b 100644 --- a/app-misc/dvtm/dvtm-0.15-r5.ebuild +++ b/app-misc/dvtm/dvtm-0.15-r5.ebuild @@ -41,8 +41,6 @@ src_prepare() { src_compile() { tc-export PKG_CONFIG - local msg="" - use savedconfig && msg=", please check the configfile" emake CC="$(tc-getCC)" ${PN} } diff --git a/app-misc/dvtm/dvtm-9999.ebuild b/app-misc/dvtm/dvtm-9999.ebuild index 835a9224b194..4874e768efea 100644 --- a/app-misc/dvtm/dvtm-9999.ebuild +++ b/app-misc/dvtm/dvtm-9999.ebuild @@ -41,8 +41,6 @@ src_prepare() { src_compile() { tc-export PKG_CONFIG - local msg="" - use savedconfig && msg=", please check the configfile" emake CC="$(tc-getCC)" ${PN} }