diff options
author | Georgy Yakovlev <gyakovlev@gentoo.org> | 2022-01-16 01:49:51 -0800 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2022-01-16 01:52:26 -0800 |
commit | 5209dfc0dee99536b67429502aa64012fe670754 (patch) | |
tree | b2e5dbfcedac07d14e35bbc53cc4420e101c96f9 /app-dicts | |
parent | www-client/firefox-bin: add a missing dep for 96.0.1 (diff) | |
download | gentoo-5209dfc0dee99536b67429502aa64012fe670754.tar.gz gentoo-5209dfc0dee99536b67429502aa64012fe670754.tar.bz2 gentoo-5209dfc0dee99536b67429502aa64012fe670754.zip |
app-dicts/gnome-dictionary: fix build failure
meson.build:1:0: ERROR: Unknown options: "ipv6"
looks like it should be use_ipv6
easy to get confused with gentoo syntax.
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'app-dicts')
-rw-r--r-- | app-dicts/gnome-dictionary/gnome-dictionary-40.0-r1.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app-dicts/gnome-dictionary/gnome-dictionary-40.0-r1.ebuild b/app-dicts/gnome-dictionary/gnome-dictionary-40.0-r1.ebuild index 4383ff0b33b0..0a2c8fabe1fc 100644 --- a/app-dicts/gnome-dictionary/gnome-dictionary-40.0-r1.ebuild +++ b/app-dicts/gnome-dictionary/gnome-dictionary-40.0-r1.ebuild @@ -34,7 +34,7 @@ src_configure() { append-cflags -DG_DISABLE_ASSERT -DG_DISABLE_CHECKS -DG_DISABLE_CAST_CHECKS local emesonargs=( - -Dipv6=true + -Duse_ipv6=true -Dbuild_man=true ) meson_src_configure |