summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-03-10 22:40:07 +0000
committerSam James <sam@gentoo.org>2022-03-10 22:40:07 +0000
commita79478acdd789a83582202a562594cd1e92446b1 (patch)
tree437f184756a62714afe61c372b46c68ac48a2375 /x11-plugins
parentx11-plugins/gkrellm-bluez: fix commands in global scope (diff)
downloadgentoo-a79478acdd789a83582202a562594cd1e92446b1.tar.gz
gentoo-a79478acdd789a83582202a562594cd1e92446b1.tar.bz2
gentoo-a79478acdd789a83582202a562594cd1e92446b1.zip
x11-plugins/gkrellm-leds: 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-leds/gkrellm-leds-0.8.2-r1.ebuild7
1 files changed, 5 insertions, 2 deletions
diff --git a/x11-plugins/gkrellm-leds/gkrellm-leds-0.8.2-r1.ebuild b/x11-plugins/gkrellm-leds/gkrellm-leds-0.8.2-r1.ebuild
index d2d908d099b8..ee631d42e276 100644
--- a/x11-plugins/gkrellm-leds/gkrellm-leds-0.8.2-r1.ebuild
+++ b/x11-plugins/gkrellm-leds/gkrellm-leds-0.8.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -24,4 +24,7 @@ DEPEND="${RDEPEND}
S="${WORKDIR}/${MY_P}"
-PLUGIN_SO=( src/.libs/gkleds$(get_modname) )
+src_configure() {
+ PLUGIN_SO=( src/.libs/gkleds$(get_modname) )
+ default
+}