diff options
author | Sam James <sam@gentoo.org> | 2022-03-10 22:44:30 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-10 22:44:30 +0000 |
commit | 9eae3933af8c484df4e0c28253c6e3efed98273a (patch) | |
tree | 25a7f228420086c93ca41bfa0c6df74e06b58a05 /x11-plugins | |
parent | x11-plugins/gkrellmwireless: fix commands in global scope (diff) | |
download | gentoo-9eae3933af8c484df4e0c28253c6e3efed98273a.tar.gz gentoo-9eae3933af8c484df4e0c28253c6e3efed98273a.tar.bz2 gentoo-9eae3933af8c484df4e0c28253c6e3efed98273a.zip |
x11-plugins/gkrellsun: 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/gkrellsun/gkrellsun-1.0.0-r4.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/x11-plugins/gkrellsun/gkrellsun-1.0.0-r4.ebuild b/x11-plugins/gkrellsun/gkrellsun-1.0.0-r4.ebuild index 3a4d0df4a5b6..c6d635b3beb1 100644 --- a/x11-plugins/gkrellsun/gkrellsun-1.0.0-r4.ebuild +++ b/x11-plugins/gkrellsun/gkrellsun-1.0.0-r4.ebuild @@ -23,7 +23,11 @@ PATCHES=( "${FILESDIR}"/${P}-Respect-LDFLAGS.patch ) -PLUGIN_SO=( src20/gkrellsun$(get_modname) ) + +src_configure() { + PLUGIN_SO=( src20/gkrellsun$(get_modname) ) + default +} src_compile() { use nls && local myconf="enable_nls=1" |