diff options
author | Joonas Niilola <juippis@gentoo.org> | 2021-02-16 14:15:22 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2021-02-16 14:16:39 +0200 |
commit | 0c26a97a3aa4053c1011160efc5d1f784b2a881a (patch) | |
tree | e71c57664750e924257342020a68843a8386a883 /media-gfx | |
parent | media-gfx/imv: ebuild enhancements on 4.2.0 (diff) | |
download | gentoo-0c26a97a3aa4053c1011160efc5d1f784b2a881a.tar.gz gentoo-0c26a97a3aa4053c1011160efc5d1f784b2a881a.tar.bz2 gentoo-0c26a97a3aa4053c1011160efc5d1f784b2a881a.zip |
media-gfx/imv: sync live ebuild
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/imv/imv-9999.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/media-gfx/imv/imv-9999.ebuild b/media-gfx/imv/imv-9999.ebuild index 7ea6a9466428..735366ed5332 100644 --- a/media-gfx/imv/imv-9999.ebuild +++ b/media-gfx/imv/imv-9999.ebuild @@ -62,9 +62,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) @@ -75,7 +75,7 @@ src_configure() { $(meson_feature svg librsvg) $(meson_feature test) $(meson_feature tiff libtiff) - -Dwindows=$WINDOWS + -Dwindows=${windows} ) meson_src_configure } |