aboutsummaryrefslogtreecommitdiff
path: root/pre-inst-env.in
diff options
context:
space:
mode:
authorChristopher R. Nelson <christopher.nelson@languidnights.com>2024-01-17 21:13:48 -0500
committerChristopher R. Nelson <christopher.nelson@languidnights.com>2024-01-21 09:59:05 -0500
commitb2c4d5b69d64bde980b7b318ef992524921c603b (patch)
treeb3315f039cd1a6c67da571e9ae4ff34326e55018 /pre-inst-env.in
parent6294af2472ff9798f46f01acf49b39f50f0375ec (diff)
Commit (current) autotools files
Normally, you don't commit generated files to vcs. In this case, we are doing so because many/most users won't have guile-hall installed, and we'd rather not force users to install a development dependency when they can install just autotools. .gitignore: rh-server && rh-client are built by make
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..31c499d
--- /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/scripts:$PATH"
+export PATH
+
+exec "$@"