summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-05-26 09:41:40 +0200
committerMichał Górny <mgorny@gentoo.org>2020-05-28 13:41:22 +0200
commitf1e8874cc2de2055c3a07f7faf0c78d723106d06 (patch)
treeaea07a9490031bd9cb93b7f26e28d5fff5826bd1 /eclass/llvm.eclass
parentllvm.eclass: Remove remnants of slot :0 support (diff)
downloadgentoo-f1e8874cc2de2055c3a07f7faf0c78d723106d06.tar.gz
gentoo-f1e8874cc2de2055c3a07f7faf0c78d723106d06.tar.bz2
gentoo-f1e8874cc2de2055c3a07f7faf0c78d723106d06.zip
llvm.eclass: Fix prepending LLVM path before system paths
Do not prepend LLVM path before system path, in particular before ccache/distcc paths. Instead, prepend it before the first LLVM version found in PATH, or append to the end if no LLVM is found in PATH. Closes: https://bugs.gentoo.org/627726 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/llvm.eclass')
-rw-r--r--eclass/llvm.eclass25
1 files changed, 23 insertions, 2 deletions
diff --git a/eclass/llvm.eclass b/eclass/llvm.eclass
index 4f968dc39f87..61b34d4985eb 100644
--- a/eclass/llvm.eclass
+++ b/eclass/llvm.eclass
@@ -198,8 +198,29 @@ llvm_pkg_setup() {
debug-print-function ${FUNCNAME} "${@}"
if [[ ${MERGE_TYPE} != binary ]]; then
- local llvm_prefix=$(get_llvm_prefix "${LLVM_MAX_SLOT}")
- export PATH=${llvm_prefix}/bin:${PATH}
+ local llvm_path=$(get_llvm_prefix "${LLVM_MAX_SLOT}")/bin
+ local IFS=:
+ local split_path=( ${PATH} )
+ local new_path=()
+ local x added=
+
+ # prepend new path before first LLVM version found
+ for x in "${split_path[@]}"; do
+ if [[ ${x} == */usr/lib/llvm/*/bin ]]; then
+ if [[ ${x} != ${llvm_path} ]]; then
+ new_path+=( "${llvm_path}" )
+ elif [[ ${added} && ${x} == ${llvm_path} ]]; then
+ # deduplicate
+ continue
+ fi
+ added=1
+ fi
+ new_path+=( "${x}" )
+ done
+ # ...or to the end of PATH
+ [[ ${added} ]] || new_path+=( "${llvm_path}" )
+
+ export PATH=${new_path[*]}
fi
}