2012-05-22 21:18:20 +00:00
|
|
|
addGuileLibPath () {
|
2021-08-06 04:41:14 +00:00
|
|
|
if test -d "$1/share/guile/site/2.2"; then
|
2019-11-20 04:12:13 +00:00
|
|
|
export GUILE_LOAD_PATH="${GUILE_LOAD_PATH-}${GUILE_LOAD_PATH:+:}$1/share/guile/site/2.2"
|
|
|
|
export GUILE_LOAD_COMPILED_PATH="${GUILE_LOAD_COMPILED_PATH-}${GUILE_LOAD_COMPILED_PATH:+:}$1/share/guile/site/2.2"
|
2021-08-06 04:41:14 +00:00
|
|
|
elif test -d "$1/share/guile/site"; then
|
2019-11-20 04:12:13 +00:00
|
|
|
export GUILE_LOAD_PATH="${GUILE_LOAD_PATH-}${GUILE_LOAD_PATH:+:}$1/share/guile/site"
|
|
|
|
export GUILE_LOAD_COMPILED_PATH="${GUILE_LOAD_COMPILED_PATH-}${GUILE_LOAD_COMPILED_PATH:+:}$1/share/guile/site"
|
2012-05-22 21:18:20 +00:00
|
|
|
fi
|
2020-05-21 22:52:01 +00:00
|
|
|
|
2021-08-06 04:41:14 +00:00
|
|
|
if test -d "$1/lib/guile/2.2/ccache"; then
|
2020-05-21 22:52:01 +00:00
|
|
|
export GUILE_LOAD_COMPILED_PATH="${GUILE_LOAD_COMPILED_PATH-}${GUILE_LOAD_COMPILED_PATH:+:}$1/lib/guile/2.2/ccache"
|
|
|
|
fi
|
|
|
|
|
2021-08-06 04:41:14 +00:00
|
|
|
if test -d "$1/lib/guile/2.2/site-ccache"; then
|
2020-05-21 22:52:01 +00:00
|
|
|
export GUILE_LOAD_COMPILED_PATH="${GUILE_LOAD_COMPILED_PATH-}${GUILE_LOAD_COMPILED_PATH:+:}$1/lib/guile/2.2/site-ccache"
|
|
|
|
fi
|
2012-05-22 21:18:20 +00:00
|
|
|
}
|
|
|
|
|
2017-08-10 22:22:07 +00:00
|
|
|
addEnvHooks "$hostOffset" addGuileLibPath
|