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 30A42158043 for ; Sun, 14 Apr 2024 13:06:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48AE4E2A05; Sun, 14 Apr 2024 13:06:11 +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 2BE6CE2A05 for ; Sun, 14 Apr 2024 13:06:11 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 01D213431D2 for ; Sun, 14 Apr 2024 13:06:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 40ECD1620 for ; Sun, 14 Apr 2024 13:06:08 +0000 (UTC) From: "Yuan Liao" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yuan Liao" Message-ID: <1713099841.71b02f2dc3235b8f5a5aab02d3e079b10020170e.liaoyuan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-laptop/framework_tool/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-laptop/framework_tool/framework_tool-0.1.0_p20240407.ebuild app-laptop/framework_tool/framework_tool-9999.ebuild X-VCS-Directories: app-laptop/framework_tool/ X-VCS-Committer: liaoyuan X-VCS-Committer-Name: Yuan Liao X-VCS-Revision: 71b02f2dc3235b8f5a5aab02d3e079b10020170e X-VCS-Branch: dev Date: Sun, 14 Apr 2024 13:06:08 +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: b7150fc1-dce6-4f7b-8a75-d180141f7688 X-Archives-Hash: 4c07b27b8683bde0656e134994a75197 commit: 71b02f2dc3235b8f5a5aab02d3e079b10020170e Author: Yuan Liao gmail com> AuthorDate: Sun Apr 14 13:04:01 2024 +0000 Commit: Yuan Liao gmail com> CommitDate: Sun Apr 14 13:04:01 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=71b02f2d app-laptop/framework_tool: Fix dobin path with USE=debug Closes: https://bugs.gentoo.org/929980 Signed-off-by: Yuan Liao gmail.com> app-laptop/framework_tool/framework_tool-0.1.0_p20240407.ebuild | 2 +- app-laptop/framework_tool/framework_tool-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app-laptop/framework_tool/framework_tool-0.1.0_p20240407.ebuild b/app-laptop/framework_tool/framework_tool-0.1.0_p20240407.ebuild index b28c18127e..2f1f5fd6e3 100644 --- a/app-laptop/framework_tool/framework_tool-0.1.0_p20240407.ebuild +++ b/app-laptop/framework_tool/framework_tool-0.1.0_p20240407.ebuild @@ -238,7 +238,7 @@ src_prepare() { } src_install() { - dobin target/release/framework_tool + dobin "target/$(usex debug debug release)/framework_tool" einstalldocs } diff --git a/app-laptop/framework_tool/framework_tool-9999.ebuild b/app-laptop/framework_tool/framework_tool-9999.ebuild index 8dc90e32f1..3f43368a06 100644 --- a/app-laptop/framework_tool/framework_tool-9999.ebuild +++ b/app-laptop/framework_tool/framework_tool-9999.ebuild @@ -102,7 +102,7 @@ src_prepare() { } src_install() { - dobin target/release/framework_tool + dobin "target/$(usex debug debug release)/framework_tool" einstalldocs }