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.
17 lines
362 B
17 lines
362 B
#!/bin/sh
|
|
|
|
if test -z "$GUILE_LOAD_PATH"; then
|
|
export GUILE_LOAD_PATH="@abs_top_srcdir@"
|
|
else
|
|
export GUILE_LOAD_PATH="@abs_top_srcdir@":$GUILE_LOAD_PATH
|
|
fi
|
|
|
|
if test -z "$GUILE_LOAD_COMPILED_PATH"; then
|
|
export GUILE_LOAD_COMPILED_PATH="@abs_top_builddir@"
|
|
else
|
|
export GUILE_LOAD_COMPILED_PATH="@abs_top_builddir@":$GUILE_LOAD_COMPILED_PATH
|
|
fi
|
|
|
|
exec "$@"
|
|
|