git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
13 lines
459 B
Bash
13 lines
459 B
Bash
addSlibPath () {
|
|
if test -f "$1/lib/slib/slibcat"
|
|
then
|
|
export SCHEME_LIBRARY_PATH="$1/lib/slib/"
|
|
echo "SLIB found in \`$1'; setting \$SCHEME_LIBRARY_PATH to \`$SCHEME_LIBRARY_PATH'"
|
|
|
|
# This is needed so that `(load-from-path "slib/guile.init")' works.
|
|
export GUILE_LOAD_PATH="$1/lib:$GUILE_LOAD_PATH"
|
|
echo "SLIB: setting \$GUILE_LOAD_PATH to \`$GUILE_LOAD_PATH'"
|
|
fi
|
|
}
|
|
|
|
addEnvHooks "$hostOffset" addSlibPath
|