diff options
author | Sam James <sam@gentoo.org> | 2022-03-10 22:39:06 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-10 22:39:06 +0000 |
commit | 65f8d2db53a278c707d612e0565bd1fabf712b8e (patch) | |
tree | ec229894aea9687f311e3feeca06cdcc136cb485 /x11-plugins | |
parent | dev-perl/Search-Xapian: don't call tc-getCXX in global scope (diff) | |
download | gentoo-65f8d2db53a278c707d612e0565bd1fabf712b8e.tar.gz gentoo-65f8d2db53a278c707d612e0565bd1fabf712b8e.tar.bz2 gentoo-65f8d2db53a278c707d612e0565bd1fabf712b8e.zip |
x11-plugins/gkrellm-bgchanger: fix commands in global scope
Closes: https://bugs.gentoo.org/788067
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/gkrellm-bgchanger/gkrellm-bgchanger-0.1.11-r2.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/x11-plugins/gkrellm-bgchanger/gkrellm-bgchanger-0.1.11-r2.ebuild b/x11-plugins/gkrellm-bgchanger/gkrellm-bgchanger-0.1.11-r2.ebuild index e1853d3a37f8..fb9bd912a808 100644 --- a/x11-plugins/gkrellm-bgchanger/gkrellm-bgchanger-0.1.11-r2.ebuild +++ b/x11-plugins/gkrellm-bgchanger/gkrellm-bgchanger-0.1.11-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -23,9 +23,10 @@ DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}"/${PN}-0.1.11-fix-build-system.patch ) -PLUGIN_SO=( gkrellmbgchg$(get_modname) ) PLUGIN_DOCS=( bgchg_info.sh kdewallpaper.sh ) src_configure() { tc-export CC + + PLUGIN_SO=( gkrellmbgchg$(get_modname) ) } |