summaryrefslogtreecommitdiff
path: root/env
blob: ff7b5e6f644524ecf120c3427221357a584f078e (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
 
GUILE_LOAD_PATH=/home/stis/src/python-on-guile/modules:$GUILE_LOAD_PATH
if test "/home/stis/src/python-on-guile" != "/home/stis/src/python-on-guile"; then
    GUILE_LOAD_PATH=/home/stis/src/python-on-guile/modules:$GUILE_LOAD_PATH
fi
GUILE_LOAD_COMPILED_PATH=/home/stis/src/python-on-guile/modules:$GUILE_LOAD_PATH
PATH=/home/stis/src/python-on-guile/bin:$PATH
 
export GUILE_LOAD_PATH
export GUILE_LOAD_COMPILED_PATH
export PATH
 
exec "$@"