You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
433 B
14 lines
433 B
2 years ago
|
#!/bin/sh
|
||
|
|
||
|
abs_top_srcdir="`cd "@abs_top_srcdir@" > /dev/null; pwd`"
|
||
|
abs_top_builddir="`cd "@abs_top_builddir@" > /dev/null; pwd`"
|
||
|
|
||
|
GUILE_LOAD_COMPILED_PATH="$abs_top_builddir${GUILE_LOAD_COMPILED_PATH:+:}$GUILE_LOAD_COMPILED_PATH"
|
||
|
GUILE_LOAD_PATH="$abs_top_builddir:$abs_top_srcdir${GUILE_LOAD_PATH:+:}:$GUILE_LOAD_PATH"
|
||
|
export GUILE_LOAD_COMPILED_PATH GUILE_LOAD_PATH
|
||
|
|
||
|
PATH="$abs_top_builddir/scripts:$PATH"
|
||
|
export PATH
|
||
|
|
||
|
exec "$@"
|