From 71f867a5eedb721ecc2799aaffcd5e041af6e31b Mon Sep 17 00:00:00 2001 From: David Seifert Date: Sun, 2 May 2021 01:55:05 +0200 Subject: [PATCH] x11-apps/xhost: Define XORG_CONFIGURE_OPTIONS in src_configure Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: David Seifert Signed-off-by: Matt Turner --- x11-apps/xhost/xhost-1.0.8.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/x11-apps/xhost/xhost-1.0.8.ebuild b/x11-apps/xhost/xhost-1.0.8.ebuild index 6b32368a13b74..a2a75a11d6715 100644 --- a/x11-apps/xhost/xhost-1.0.8.ebuild +++ b/x11-apps/xhost/xhost-1.0.8.ebuild @@ -15,6 +15,9 @@ RDEPEND="x11-libs/libX11 x11-libs/libXau" DEPEND="${RDEPEND}" -pkg_setup() { - XORG_CONFIGURE_OPTIONS="$(use_enable ipv6)" +src_configure() { + local XORG_CONFIGURE_OPTIONS=( + $(use_enable ipv6) + ) + xorg-3_src_configure }