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 084901581B9 for ; Sun, 05 Oct 2025 21:50:12 +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 E4267340E7A for ; Sun, 05 Oct 2025 21:50:11 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id DEFA71102C9; Sun, 05 Oct 2025 21:50:10 +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 D579C1102C9 for ; Sun, 05 Oct 2025 21:50:10 +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 91AFF340E7A for ; Sun, 05 Oct 2025 21:50:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0B2FA34CD for ; Sun, 05 Oct 2025 21:50:09 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1759700983.7ad5452949cbe7fa8856d5fa43528cd39f84efaf.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/cmake.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7ad5452949cbe7fa8856d5fa43528cd39f84efaf X-VCS-Branch: master Date: Sun, 05 Oct 2025 21:50:09 +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: 72df26b4-4efa-4858-96e2-14694c216abb X-Archives-Hash: 2c5fda0e87c0f74a6d1cdf64c90cd75d commit: 7ad5452949cbe7fa8856d5fa43528cd39f84efaf Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Sep 27 19:29:09 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 5 21:49:43 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ad54529 cmake.eclass: Reorder arguments in cmake_src_install cmake_build call Bug: https://bugs.gentoo.org/963428 Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/cmake.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index 2e799f14352e..b3a1cde6057e 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -796,7 +796,7 @@ cmake_src_test() { cmake_src_install() { debug-print-function ${FUNCNAME} "$@" - DESTDIR="${D}" cmake_build install "$@" + DESTDIR="${D}" cmake_build "$@" install if [[ ${EAPI} == 7 ]]; then pushd "${S}" > /dev/null || die