From: James Le Cuirot Date: Wed, 21 Aug 2019 22:33:21 +0000 (+0100) Subject: toolchain.eclass: Fix gcj's automagic dependency on dev-java/antlr X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=578b05904e4db05655b7f7cf033847c68cf8ace3;p=gentoo.git toolchain.eclass: Fix gcj's automagic dependency on dev-java/antlr Closes: https://bugs.gentoo.org/552882 Signed-off-by: James Le Cuirot --- diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 06503b28f29b..e8fa4d69412b 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # Maintainer: Toolchain Ninjas @@ -1238,10 +1238,11 @@ toolchain_src_configure() { ### library options if tc_version_is_between 3.0 7.0 ; then - if ! is_gcj ; then + if is_gcj ; then + confgcc+=( --disable-gjdoc ) + use awt && confgcc+=( --enable-java-awt=gtk ) + else confgcc+=( --disable-libgcj ) - elif use awt ; then - confgcc+=( --enable-java-awt=gtk ) fi fi