Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/releng:master commit in: tools/
Date: Sat, 01 May 2021 20:50:48
Message-Id: 1619901996.6e6811f188354b6f6e8b46c068552ee486d30caa.dilfridge@gentoo
1 commit: 6e6811f188354b6f6e8b46c068552ee486d30caa
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 1 20:46:36 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sat May 1 20:46:36 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=6e6811f1
7
8 Fix directory path
9
10 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
11
12 tools/catalyst-auto-amd64-musl.conf | 3 +--
13 1 file changed, 1 insertion(+), 2 deletions(-)
14
15 diff --git a/tools/catalyst-auto-amd64-musl.conf b/tools/catalyst-auto-amd64-musl.conf
16 index 1b4e2b3b..65de7672 100644
17 --- a/tools/catalyst-auto-amd64-musl.conf
18 +++ b/tools/catalyst-auto-amd64-musl.conf
19 @@ -7,7 +7,6 @@ host=$(hostname)
20
21 ARCH="amd64"
22 TYPE="auto"
23 -source /etc/catalyst/release/build.env
24
25 SPECS_DIR=${REPO_DIR}/releases/specs/amd64/musl
26
27 @@ -26,7 +25,7 @@ EXTENSIONS="@(.tar.xz|.tar.bz2|.tar.gz|.tar|.sfs)"
28
29 update_symlinks() {
30 # Symlink the latest stages3 to build from
31 - for d in ${BUILD_SRCDIR_BASE}/{musl} ; do
32 + for d in ${BUILD_SRCDIR_BASE}/musl ; do
33 pushd "${d}" >/dev/null || exit
34 shopt -s extglob
35 for f in $(ls stage3*${EXTENSIONS} | grep -v latest | give_latest_from_dates ) ; do