feat(third_party/guile): Override guile to version 3.0.0

Lets try this thing out!
This commit is contained in:
Vincent Ambo 2020-01-19 19:34:39 +00:00
parent 0a3613996f
commit 1f68644dc9
4 changed files with 27 additions and 1 deletions

13
third_party/guile/setup-hook-3.0.sh vendored Normal file
View file

@ -0,0 +1,13 @@
addGuileLibPath () {
if test -d "$1/share/guile/site/3.0"
then
export GUILE_LOAD_PATH="${GUILE_LOAD_PATH}${GUILE_LOAD_PATH:+:}$1/share/guile/site/3.0"
export GUILE_LOAD_COMPILED_PATH="${GUILE_LOAD_COMPILED_PATH}${GUILE_LOAD_COMPILED_PATH:+:}$1/share/guile/site/3.0"
elif test -d "$1/share/guile/site"
then
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"
fi
}
addEnvHooks "$hostOffset" addGuileLibPath