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: Fri, 02 Jul 2021 19:45:19
Message-Id: 1625255091.fc700b0e620f7f85e3ef928a1f6383e61a32ff88.dilfridge@gentoo
1 commit: fc700b0e620f7f85e3ef928a1f6383e61a32ff88
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 2 19:44:17 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 2 19:44:51 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=fc700b0e
7
8 x86: Fix tarball path in c-auto conf
9
10 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
11
12 tools/catalyst-auto-x86-demeter.conf | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/tools/catalyst-auto-x86-demeter.conf b/tools/catalyst-auto-x86-demeter.conf
16 index 522ccc26..ab0fc7b6 100644
17 --- a/tools/catalyst-auto-x86-demeter.conf
18 +++ b/tools/catalyst-auto-x86-demeter.conf
19 @@ -24,7 +24,7 @@ EXTENSIONS="@(.tar.xz|.tar.bz2|.tar.gz|.tar|.sfs)"
20
21 update_symlinks() {
22 # Symlink the latest stages3 to build from
23 - for d in ${BUILD_SRCDIR_BASE}/{default,hardened} ; do
24 + for d in ${BUILD_SRCDIR_BASE}/builds/default ; do
25 pushd "${d}" >/dev/null || exit
26 shopt -s extglob
27 for f in $(ls stage3*${EXTENSIONS} | grep -v latest | give_latest_from_dates ) ; do
28 @@ -47,7 +47,7 @@ update_symlinks() {
29 post_build() {
30 local set=$1 spec=$2
31
32 - pushd "${BUILD_SRCDIR_BASE}"/default >/dev/null || exit
33 + pushd ${BUILD_SRCDIR_BASE}/builds/default >/dev/null || exit
34 UPLOAD_DEST=${BUILD_DESTDIR_BASE}
35 case ${spec} in
36 i486/stage3-openrc.spec)