summaryrefslogtreecommitdiff
path: root/modules/env.in
blob: c2325a2926a7e72150d1962afb22c1a2aca8d5a8 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
 
GUILE_LOAD_PATH=@abs_top_srcdir@/modules:$GUILE_LOAD_PATH
if test "@abs_top_srcdir@" != "@abs_top_builddir@"; then
    GUILE_LOAD_PATH=@abs_top_builddir@/modules:$GUILE_LOAD_PATH
fi
GUILE_LOAD_COMPILED_PATH=@abs_top_builddir@/modules:$GUILE_LOAD_PATH
PATH=@abs_top_builddir@/bin:$PATH
 
export GUILE_LOAD_PATH
export GUILE_LOAD_COMPILED_PATH
export PATH
 
exec "$@"