aboutsummaryrefslogtreecommitdiff
path: root/pre-inst-env.in
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-04-03 21:24:19 +0100
committerChristopher Baines <mail@cbaines.net>2020-04-03 21:24:19 +0100
commitf235c8ad0aa1ea39cfe8a1a9d77bfebbcd018633 (patch)
tree9090866c0e03ab3d7d17e8dfb88635f3eaaf8a25 /pre-inst-env.in
downloadbuild-coordinator-f235c8ad0aa1ea39cfe8a1a9d77bfebbcd018633.tar
build-coordinator-f235c8ad0aa1ea39cfe8a1a9d77bfebbcd018633.tar.gz
Initial commit
Setup done with the aid of [1]. 1: https://www.draketo.de/proj/with-guise-and-guile/guile-projects-with-autotools.html
Diffstat (limited to 'pre-inst-env.in')
-rw-r--r--pre-inst-env.in13
1 files changed, 13 insertions, 0 deletions
diff --git a/pre-inst-env.in b/pre-inst-env.in
new file mode 100644
index 0000000..ebf1a05
--- /dev/null
+++ b/pre-inst-env.in
@@ -0,0 +1,13 @@
+#!/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:$PATH"
+export PATH
+
+exec "$@"