From fc700b0e620f7f85e3ef928a1f6383e61a32ff88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20K=2E=20H=C3=BCttel?= Date: Fri, 2 Jul 2021 21:44:17 +0200 Subject: [PATCH] x86: Fix tarball path in c-auto conf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas K. Hüttel --- tools/catalyst-auto-x86-demeter.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/catalyst-auto-x86-demeter.conf b/tools/catalyst-auto-x86-demeter.conf index 522ccc26..ab0fc7b6 100644 --- a/tools/catalyst-auto-x86-demeter.conf +++ b/tools/catalyst-auto-x86-demeter.conf @@ -24,7 +24,7 @@ EXTENSIONS="@(.tar.xz|.tar.bz2|.tar.gz|.tar|.sfs)" update_symlinks() { # Symlink the latest stages3 to build from - for d in ${BUILD_SRCDIR_BASE}/{default,hardened} ; do + for d in ${BUILD_SRCDIR_BASE}/builds/default ; do pushd "${d}" >/dev/null || exit shopt -s extglob for f in $(ls stage3*${EXTENSIONS} | grep -v latest | give_latest_from_dates ) ; do @@ -47,7 +47,7 @@ update_symlinks() { post_build() { local set=$1 spec=$2 - pushd "${BUILD_SRCDIR_BASE}"/default >/dev/null || exit + pushd ${BUILD_SRCDIR_BASE}/builds/default >/dev/null || exit UPLOAD_DEST=${BUILD_DESTDIR_BASE} case ${spec} in i486/stage3-openrc.spec)