commit: 4ebb38a4569505aadbf13a9067c3be338ddf9e2e
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 16 12:14:45 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Feb 16 12:16:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ebb38a4
media-gfx/imv: ebuild enhancements on 4.2.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
media-gfx/imv/imv-4.2.0.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/media-gfx/imv/imv-4.2.0.ebuild b/media-gfx/imv/imv-4.2.0.ebuild
index d586e38f344..25863200b0b 100644
--- a/media-gfx/imv/imv-4.2.0.ebuild
+++ b/media-gfx/imv/imv-4.2.0.ebuild
@@ -67,9 +67,9 @@ src_prepare() {
}
src_configure() {
- local WINDOWS=all
- use X || WINDOWS=wayland
- use wayland || WINDOWS=x11
+ local windows=all
+ use X || windows=wayland
+ use wayland || windows=x11
local emesonargs=(
$(meson_feature freeimage)
@@ -80,7 +80,7 @@ src_configure() {
$(meson_feature svg librsvg)
$(meson_feature test)
$(meson_feature tiff libtiff)
- -Dwindows=$WINDOWS
+ -Dwindows=${windows}
)
meson_src_configure
}