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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 74044158041 for ; Sat, 30 Mar 2024 13:16:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC3EAE2A61; Sat, 30 Mar 2024 13:16:58 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 9B21CE2A61 for ; Sat, 30 Mar 2024 13:16:58 +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 96E6B343061 for ; Sat, 30 Mar 2024 13:16:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0515615E6 for ; Sat, 30 Mar 2024 13:16:56 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1711804569.e1aa6894580cd3c71f21adc3ff667c5223fc9a4c.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/bootstrap-prefix.sh X-VCS-Directories: scripts/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: e1aa6894580cd3c71f21adc3ff667c5223fc9a4c X-VCS-Branch: master Date: Sat, 30 Mar 2024 13:16:56 +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: 410c3546-60db-4486-89b4-62cb02285c87 X-Archives-Hash: 7d206b90317b95961faad0a526a8d6e3 commit: e1aa6894580cd3c71f21adc3ff667c5223fc9a4c Author: Fabian Groffen gentoo org> AuthorDate: Sat Mar 30 13:16:09 2024 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sat Mar 30 13:16:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=e1aa6894 scripts/bootstrap-prefix: fix econf after shellconf CONFIG_SHELL may be unset, so only quote it, when it is, leave it unset otherwise Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index d58d58175d..0ef1aefa3b 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -25,7 +25,7 @@ v() { echo "$@"; "$@"; } econf() { estatus "stage1: configuring ${PWD##*/}" - v "${CONFIG_SHELL}" ./configure \ + v ${CONFIG_SHELL:+"${CONFIG_SHELL}"} ./configure \ --host="${CHOST}" \ --prefix="${ROOT}"/tmp/usr \ --mandir="${ROOT}"/tmp/usr/share/man \