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 95136158041 for ; Sun, 24 Mar 2024 09:07:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CCB81E2A20; Sun, 24 Mar 2024 09:07:30 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B22D8E2A20 for ; Sun, 24 Mar 2024 09:07:30 +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 DB43034307A for ; Sun, 24 Mar 2024 09:07:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0300AB91 for ; Sun, 24 Mar 2024 09:07:28 +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: <1711271171.c7012f128a3c04053924fa1e96ed48a1c758fc65.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-build/libtool/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-build/libtool/libtool-2.4.7-r2.ebuild dev-build/libtool/libtool-2.4.7-r3.ebuild dev-build/libtool/libtool-9999.ebuild X-VCS-Directories: dev-build/libtool/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c7012f128a3c04053924fa1e96ed48a1c758fc65 X-VCS-Branch: master Date: Sun, 24 Mar 2024 09:07:28 +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: e65c14bc-933c-40ef-830c-b91f6bfb050b X-Archives-Hash: 8efcac4bd25864fa52ce646dcd9694ec commit: c7012f128a3c04053924fa1e96ed48a1c758fc65 Author: Sam James gentoo org> AuthorDate: Sun Mar 24 09:05:20 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 24 09:06:11 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7012f12 dev-build/libtool: fix shebang for bash Always use ${EPREFIX}/bin/bash rather than the current path to bash, so that we work on both usr-merged and non-usr-merged systems. Bug: https://bugs.gentoo.org/927662 Closes: https://bugs.gentoo.org/927650 Signed-off-by: Sam James gentoo.org> dev-build/libtool/{libtool-2.4.7-r2.ebuild => libtool-2.4.7-r3.ebuild} | 2 +- dev-build/libtool/libtool-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-build/libtool/libtool-2.4.7-r2.ebuild b/dev-build/libtool/libtool-2.4.7-r3.ebuild similarity index 98% rename from dev-build/libtool/libtool-2.4.7-r2.ebuild rename to dev-build/libtool/libtool-2.4.7-r3.ebuild index 9aeb0ed28993..75bdf19f6d2a 100644 --- a/dev-build/libtool/libtool-2.4.7-r2.ebuild +++ b/dev-build/libtool/libtool-2.4.7-r3.ebuild @@ -98,7 +98,7 @@ src_configure() { # to find a bash shell. if /bin/sh is bash, it uses that. this can # cause problems for people who switch /bin/sh on the fly to other # shells, so just force libtool to use /bin/bash all the time. - export CONFIG_SHELL="$(type -P bash)" + export CONFIG_SHELL="${EPREFIX}"/bin/bash # Do not bother hardcoding the full path to sed. # Just rely on $PATH. bug #574550 diff --git a/dev-build/libtool/libtool-9999.ebuild b/dev-build/libtool/libtool-9999.ebuild index e5ecf26e0972..033495d8ee02 100644 --- a/dev-build/libtool/libtool-9999.ebuild +++ b/dev-build/libtool/libtool-9999.ebuild @@ -96,7 +96,7 @@ src_configure() { # to find a bash shell. if /bin/sh is bash, it uses that. this can # cause problems for people who switch /bin/sh on the fly to other # shells, so just force libtool to use /bin/bash all the time. - export CONFIG_SHELL="$(type -P bash)" + export CONFIG_SHELL="${EPREFIX}"/bin/bash # Do not bother hardcoding the full path to sed. # Just rely on $PATH. bug #574550