20 lines
392 B
Bash
20 lines
392 B
Bash
|
thisroot () {
|
||
|
# Workaround thisroot.sh dependency on man
|
||
|
if [ -z "${MANPATH-}" ]; then
|
||
|
MANPATH=:
|
||
|
fi
|
||
|
local oldOpts="-u"
|
||
|
shopt -qo nounset || oldOpts="+u"
|
||
|
set +u
|
||
|
source @out@/bin/thisroot.sh
|
||
|
set "$oldOpts"
|
||
|
}
|
||
|
|
||
|
postHooks+=(thisroot)
|
||
|
|
||
|
addRootIncludePath() {
|
||
|
addToSearchPath ROOT_INCLUDE_PATH $1/include
|
||
|
}
|
||
|
|
||
|
addEnvHooks "$targetOffset" addRootIncludePath
|