summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2016-05-19 22:16:14 -0400
committerJorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>2016-05-29 20:05:04 +0000
commit6b02a38e44bccb6ad34111c1f537a38dc6b061ff (patch)
treec69c147f1f0af5e00746da80ece5182af6c6b719
parentcatalyst-auto: try to fix syntax error in previous commits (diff)
downloadreleng-6b02a38e44bccb6ad34111c1f537a38dc6b061ff.tar.gz
releng-6b02a38e44bccb6ad34111c1f537a38dc6b061ff.tar.bz2
releng-6b02a38e44bccb6ad34111c1f537a38dc6b061ff.zip
catalyst-auto: automatically calculate REPO_DIR
Rather than hardcode it to a path that works on only a few systems, switch it to the dynamic calculation like we use for GITDIR.
-rw-r--r--config/build.env1
-rwxr-xr-xtools/catalyst-auto5
2 files changed, 3 insertions, 3 deletions
diff --git a/config/build.env b/config/build.env
index 72c68dc2..2fc44f64 100644
--- a/config/build.env
+++ b/config/build.env
@@ -1,5 +1,4 @@
BASE_DIR="/release"
-REPO_DIR="/release/releng"
TMP_PATH="/release/tmp/run"
BUILD_SRCDIR_BASE=${BASE_DIR}/buildroot/${ARCH}-dev/builds/
BUILD_DESTDIR_BASE=${BASE_DIR}/weekly/builds/${ARCH}/
diff --git a/tools/catalyst-auto b/tools/catalyst-auto
index 51e0c16a..b933aa69 100755
--- a/tools/catalyst-auto
+++ b/tools/catalyst-auto
@@ -159,8 +159,9 @@ if [[ -n ${lock_file} ]]; then
fi
fi
-# Probe the default gitdir from this script name.
-GITDIR=$(dirname "$(dirname "$(realpath "$0")")")
+# Probe the default source dir from this script name.
+REPO_DIR=$(dirname "$(dirname "$(realpath "$0")")")
+GITDIR=${REPO_DIR}
# Set up defaults that config files can override if they want.
SUBARCH=$(uname -m)