From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DE29B158020 for ; Sat, 19 Nov 2022 09:25:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 47F02E08F6; Sat, 19 Nov 2022 09:24:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F0BF5E08CE for ; Sat, 19 Nov 2022 09:24:50 +0000 (UTC) From: Matthew Smith To: gentoo-dev@lists.gentoo.org Cc: Matthew Smith Subject: [gentoo-dev] [PATCH 2/4] waf-utils.eclass: pass EXTRA_ECONF to configure Date: Sat, 19 Nov 2022 09:23:56 +0000 Message-Id: <20221119092358.280588-3-matthew@gentoo.org> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221119092358.280588-1-matthew@gentoo.org> References: <20221119092358.280588-1-matthew@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: 44c78f5d-fdab-4288-b99c-8be9bbb22dff X-Archives-Hash: f5ca7e1e28802fa385b85e74b62c62c3 Allows users to override configure flags as in other build systems. Closes: https://bugs.gentoo.org/817419 Signed-off-by: Matthew Smith --- eclass/waf-utils.eclass | 1 + 1 file changed, 1 insertion(+) diff --git a/eclass/waf-utils.eclass b/eclass/waf-utils.eclass index b73866072f7..2a386e99165 100644 --- a/eclass/waf-utils.eclass +++ b/eclass/waf-utils.eclass @@ -102,6 +102,7 @@ waf-utils_src_configure() { "--prefix=${EPREFIX}/usr" "${conf_args[@]}" "${@}" + ${EXTRA_ECONF} configure ) -- 2.38.1