2012-05-22 22:18:20 +01:00
|
|
|
addGuileLibPath () {
|
2017-03-19 17:40:49 +00:00
|
|
|
if test -d "$1/share/guile/site/2.2"
|
2012-05-22 22:18:20 +01:00
|
|
|
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"
|
2012-05-22 22:18:20 +01: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 22:18:20 +01:00
|
|
|
fi
|
2020-05-21 23:52:01 +01:00
|
|
|
|
|
|
|
if test -d "$1/lib/guile/2.2/ccache"
|
|
|
|
then
|
|
|
|
export GUILE_LOAD_COMPILED_PATH="${GUILE_LOAD_COMPILED_PATH-}${GUILE_LOAD_COMPILED_PATH:+:}$1/lib/guile/2.2/ccache"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test -d "$1/lib/guile/2.2/site-ccache"
|
|
|
|
then
|
|
|
|
export GUILE_LOAD_COMPILED_PATH="${GUILE_LOAD_COMPILED_PATH-}${GUILE_LOAD_COMPILED_PATH:+:}$1/lib/guile/2.2/site-ccache"
|
|
|
|
fi
|
2012-05-22 22:18:20 +01:00
|
|
|
}
|
|
|
|
|
2017-08-10 23:22:07 +01:00
|
|
|
addEnvHooks "$hostOffset" addGuileLibPath
|