commit: baf9dd7e41f8fd7e14af116a6a5d2c1eff0c7c78
Author: Petr Vaněk <arkamar <AT> atlas <DOT> cz>
AuthorDate: Thu Oct 6 18:51:52 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> 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 <arkamar <AT> atlas.cz>
Signed-off-by: Sam James <sam <AT> 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}
}