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 F17191382C5 for ; Wed, 16 Dec 2020 03:01:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2FFE8E088C; Wed, 16 Dec 2020 03:01:46 +0000 (UTC) Received: from mail-qt1-f193.google.com (mail-qt1-f193.google.com [209.85.160.193]) (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 E5010E088C for ; Wed, 16 Dec 2020 03:01:45 +0000 (UTC) Received: by mail-qt1-f193.google.com with SMTP id 2so6451133qtt.10 for ; Tue, 15 Dec 2020 19:01:45 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=nc56xD5ixyhTrfjZC4Fp4Opvx6uJr0pbGGsUhX+/Ui0=; b=uC7Cvdrl9rC7IaRrlUQZTtd2yqDjxRF1U45Q/Cr6LyAq/UfKmMmtYnBygqVTlcxQyz xnm8D2ImnKVAIkevYcg7nyfMGGvsVgD8DHnBJzM6+O2jKuZnYc3EH5TXJub9M1aUyeYG KGSu/13C5ba/SKfDLMO9tiqt1s5nKZntPnoTtjf4WVQzg3xlBYa8+4aIXS5H923O9knD IxWo+t3r6DP5IZC+P9QgudnqI9hJv1RgBP3pfbqFVUgqIXHkuWvX9D/HZQJ2/8OxwU41 XdyZLMONrsnDIqx8o9i5WbGTYFejBiWxHkYv+yau4/M54LxodFowyscNcCROVdxK2jBx tiKw== X-Gm-Message-State: AOAM530zPTMKyOZ8m8EpC8o1Z2sMGsHv/JfI1rI9xiBI15GI6o9hVET6 J+3118D3z7KeJrdmAyuUMgeRc7dX6eRm5Q== X-Google-Smtp-Source: ABdhPJxHoR4usVT10EH6KgTjy4usoqn1uXKcCbCwmHBK88yM88nbV7PVaMfB0fwWbbBFdIUt/+9NxA== X-Received: by 2002:ac8:4d4d:: with SMTP id x13mr19209168qtv.385.1608087704798; Tue, 15 Dec 2020 19:01:44 -0800 (PST) Received: from localhost ([208.104.103.123]) by smtp.gmail.com with ESMTPSA id n3sm330735qtp.72.2020.12.15.19.01.43 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 15 Dec 2020 19:01:43 -0800 (PST) From: Matt Turner To: gentoo-catalyst@lists.gentoo.org Cc: Matt Turner Subject: [gentoo-catalyst] [PATCH 1/5] targets: Rename clst_buildpkgs -> buildpkgs Date: Tue, 15 Dec 2020 22:01:27 -0500 Message-Id: <20201216030131.14158-1-mattst88@gentoo.org> X-Mailer: git-send-email 2.26.2 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: c3566353-8fa4-45a4-906a-60bcf56de611 X-Archives-Hash: 22e137b2e8479d4fea9963e8853b9d8b And remove the unnecessary export. Signed-off-by: Matt Turner --- targets/stage1/chroot.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/targets/stage1/chroot.sh b/targets/stage1/chroot.sh index 2a8dc59b..dac52dfc 100755 --- a/targets/stage1/chroot.sh +++ b/targets/stage1/chroot.sh @@ -3,7 +3,7 @@ source /tmp/chroot-functions.sh # We do this first, so we know our package list for --debug -export clst_buildpkgs="$(/tmp/build.py)" +buildpkgs="$(/tmp/build.py)" # Setup our environment [ -n "${clst_BINDIST}" ] && BINDIST="bindist" @@ -12,7 +12,7 @@ BOOTSTRAP_USE="$(portageq envvar BOOTSTRAP_USE)" FEATURES="${FEATURES} nodoc noman noinfo" ## Sanity check profile -if [ -z "${clst_buildpkgs}" ] +if [ -z "${buildpkgs}" ] then echo "Your profile seems to be broken." echo "Could not build a list of build packages." @@ -72,7 +72,7 @@ if [ -e ${clst_make_conf} ]; then done fi -run_merge "--oneshot ${clst_buildpkgs}" +run_merge "--oneshot ${buildpkgs}" # TODO: Drop this when locale-gen in stable glibc supports ROOT. # -- 2.26.2