pre-inst-env.in
| 1 | #!/bin/sh |
| 2 | |
| 3 | abs_top_srcdir="`cd "@abs_top_srcdir@" > /dev/null; pwd`" |
| 4 | abs_top_builddir="`cd "@abs_top_builddir@" > /dev/null; pwd`" |
| 5 | |
| 6 | GUILE_LOAD_COMPILED_PATH="$abs_top_builddir${GUILE_LOAD_COMPILED_PATH:+:}$GUILE_LOAD_COMPILED_PATH" |
| 7 | GUILE_LOAD_PATH="$abs_top_builddir:$abs_top_srcdir${GUILE_LOAD_PATH:+:}:$GUILE_LOAD_PATH" |
| 8 | export GUILE_LOAD_COMPILED_PATH GUILE_LOAD_PATH |
| 9 | |
| 10 | PATH="$abs_top_builddir:$PATH" |
| 11 | export PATH |
| 12 | |
| 13 | exec "$@" |
| 14 |