From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 finch.gentoo.org (Postfix) with ESMTPS id C09321582EF for ; Fri, 07 Mar 2025 01:23:46 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id A7512342FB7 for ; Fri, 07 Mar 2025 01:23:46 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 91EFF1102F2; Fri, 07 Mar 2025 01:23:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 817B71102D2 for ; Fri, 07 Mar 2025 01:23:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 353A4342FB7 for ; Fri, 07 Mar 2025 01:23:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E2852853 for ; Fri, 07 Mar 2025 01:23:43 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1741310154.2b5a13c5a6b9f6e8d8fba44a1ad6577a35198459.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/autotools.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2b5a13c5a6b9f6e8d8fba44a1ad6577a35198459 X-VCS-Branch: master Date: Fri, 07 Mar 2025 01:23:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ab075376-a670-44ef-8e10-131ff8ed4f8f X-Archives-Hash: 277288c0813f3c7b42203ea0b6d43f49 commit: 2b5a13c5a6b9f6e8d8fba44a1ad6577a35198459 Author: Sam James gentoo org> AuthorDate: Fri Mar 7 01:14:50 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 7 01:15:54 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b5a13c5 autotools.eclass: conditionalize elt-patches (libtool.eclass) dependency Use newly-added LIBTOOL_DEPEND so that LIBTOOL_AUTO_DEPEND=no doesn't result in a useless dependency on elt-patches in the WANT_LIBTOOL=no case. Prompted by a discussion with Eli Schwartz gentoo.org>. Signed-off-by: Sam James gentoo.org> eclass/autotools.eclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index a36b6ba859be..1545b88bc426 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -32,6 +32,7 @@ case ${EAPI} in esac GNUCONFIG_AUTO_DEPEND=no +LIBTOOL_AUTO_DEPEND=no inherit gnuconfig libtool # @ECLASS_VARIABLE: WANT_AUTOCONF @@ -152,6 +153,7 @@ fi # versions in *DEPEND format. AUTOTOOLS_DEPEND=" ${GNUCONFIG_DEPEND} + ${LIBTOOL_DEPEND} ${_automake_atom} ${_autoconf_atom} ${_libtool_atom}