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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D76DF13835A for ; Mon, 8 Feb 2021 22:32:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 112E1E093B; Mon, 8 Feb 2021 22:32:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EC6FCE0936 for ; Mon, 8 Feb 2021 22:32:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9036C340D7D for ; Mon, 8 Feb 2021 22:32:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC2BA4C1 for ; Mon, 8 Feb 2021 22:32:52 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1612823281.24b33a6f4657df846e70c65e85a88d5c7578b004.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_initramfs.sh X-VCS-Directories: / X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 24b33a6f4657df846e70c65e85a88d5c7578b004 X-VCS-Branch: master Date: Mon, 8 Feb 2021 22:32:52 +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: 61a62ab7-50e4-4756-8fbd-8d27b434d762 X-Archives-Hash: bd4671a28881a332b7a62d031449c2cf commit: 24b33a6f4657df846e70c65e85a88d5c7578b004 Author: Thomas Deutschmann gentoo org> AuthorDate: Mon Feb 8 22:28:01 2021 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Mon Feb 8 22:28:01 2021 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=24b33a6f gen_initramfs.sh: copy_binaries(): use global LC_ALL Since commit 0785165ca64 we set LC_ALL in global scope. Signed-off-by: Thomas Deutschmann gentoo.org> gen_initramfs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen_initramfs.sh b/gen_initramfs.sh index 3fc400d..f5fcd98 100755 --- a/gen_initramfs.sh +++ b/gen_initramfs.sh @@ -37,7 +37,7 @@ copy_binaries() { [[ -e "${binary}" ]] \ || gen_die "Binary ${binary} could not be found" - if LC_ALL=C "${LDDTREE_COMMAND}" "${binary}" 2>&1 | grep -F -q 'not found' + if "${LDDTREE_COMMAND}" "${binary}" 2>&1 | grep -F -q 'not found' then gen_die "Binary ${binary} is linked to missing libraries and may need to be re-built" fi