diff options
author | 2020-11-27 11:58:38 +0100 | |
---|---|---|
committer | 2020-11-27 11:58:55 +0100 | |
commit | d3c736c968d330bbd886e9a7b6134e7db6ae2f06 (patch) | |
tree | fb431a4970d26d3e2cb2b53536997efe42239afc | |
parent | scripts/auto-bootstraps/analyse_result: add GCC tag for macOS (diff) | |
download | prefix-d3c736c968d330bbd886e9a7b6134e7db6ae2f06.tar.gz prefix-d3c736c968d330bbd886e9a7b6134e7db6ae2f06.tar.bz2 prefix-d3c736c968d330bbd886e9a7b6134e7db6ae2f06.zip |
scripts/auto-bootstraps/dobootstrap: allow EPREFIX override with resume
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
-rwxr-xr-x | scripts/auto-bootstraps/dobootstrap | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/auto-bootstraps/dobootstrap b/scripts/auto-bootstraps/dobootstrap index 1273f9a2da..e8e47f3ef7 100755 --- a/scripts/auto-bootstraps/dobootstrap +++ b/scripts/auto-bootstraps/dobootstrap @@ -28,7 +28,7 @@ do_prepare() { local bootstrap if [[ -n ${RESUME} && -n ${bitw} && -n ${dte} ]] ; then - bootstrap=bootstrap${bitw}-${dte}/bootstrap-prefix.sh + bootstrap=${OVERRIDE_EPREFIX:-bootstrap${bitw}-${dte}}/bootstrap-prefix.sh elif [[ -n ${DOLOCAL} ]] ; then bootstrap=${BOOTSTRAP} else |