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 056A3138359 for ; Thu, 16 Jul 2020 15:03:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 49DA5E0831; Thu, 16 Jul 2020 15:03:27 +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 31030E0831 for ; Thu, 16 Jul 2020 15:03:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 CAD2834F1BD for ; Thu, 16 Jul 2020 15:03:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B5FDE2DF for ; Thu, 16 Jul 2020 15:03:21 +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: <1594909755.c8dcd6cda6a60e59d4891b9b3902ef641afc1d1b.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_determineargs.sh X-VCS-Directories: / X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: c8dcd6cda6a60e59d4891b9b3902ef641afc1d1b X-VCS-Branch: master Date: Thu, 16 Jul 2020 15:03:21 +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: 769ae2cf-de67-4d01-9f3a-1e4d2ed70f3e X-Archives-Hash: 0b0df6ea459d40f3e72eb58306e35699 commit: c8dcd6cda6a60e59d4891b9b3902ef641afc1d1b Author: Thomas Deutschmann gentoo org> AuthorDate: Tue Jul 14 16:19:59 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Thu Jul 16 14:29:15 2020 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=c8dcd6cd gen_determineargs.sh: determine_real_args(): Fix unsetting toolchain variable Signed-off-by: Thomas Deutschmann gentoo.org> gen_determineargs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen_determineargs.sh b/gen_determineargs.sh index fca82b2..0cbba36 100755 --- a/gen_determineargs.sh +++ b/gen_determineargs.sh @@ -264,7 +264,7 @@ determine_real_args() { for tc_var in ${tc_vars} do tc_varname_build="BUILD_${tc_var}" - unset tc_var ${tc_varname_build} + unset ${tc_var} ${tc_varname_build} done unset tc_var tc_varname_build tc_vars