Skip to content
Snippets Groups Projects
Commit fbc8b7ec authored by Sandipan Mohanty's avatar Sandipan Mohanty
Browse files

PYTHONPATH and MANPATH in pathutils.sh

parent 46f623bb
Branches
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
# ***********************************************
# High-performance scientific computing in C++
# 07 -- 10 June 2022
# 29 May -- 02 June 2023
# Jülich Supercomputing Centre
# ***********************************************
......@@ -61,11 +61,22 @@ incpathadd() {
incpathrm() {
remove_path_element CPATH $1
}
manpathadd() {
prepend_path MANPATH $1
}
manpathrm() {
remove_path_element MANPATH $1
}
cmpathadd() {
prepend_path CMAKE_PREFIX_PATH $1
}
cmpathrm() {
remove_path_element CMAKE_PREFIX_PATH $1
}
pypathadd() {
prepend_path PYTHONPATH $1
}
pypathrm() {
remove_path_element PYTHONPATH $1
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment