diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2016-12-24 01:08:04 +0100 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2016-12-28 18:19:03 +0100 |
commit | 57e10c6056458a3456aaa030fe48babc72097ce7 (patch) | |
tree | bf1fce7daecd7d01d3904b690adfa14b2edddd45 /bin | |
parent | 16aec469d45a9339f117cd6427aebe8d7b80e5bc (diff) | |
download | cuirass-57e10c6056458a3456aaa030fe48babc72097ce7.tar cuirass-57e10c6056458a3456aaa030fe48babc72097ce7.tar.gz |
build: Set Guile load paths in 'pre-inst-env'.
This reverts most of 4f0d665746e0c6efe43c0f281e0eaac5012c79da. The load paths
are still hard coded after installation, however 'pre-inst-env' wrapper is
used for defining them in the local build environment. This is more
convenient for running the tests manually or launching a Guile REPL with all
the Cuirass modules accessible.
* build-aux/pre-inst-env.in (GUILE_LOAD_PATH, GUILE_LOAD_COMPILED_PATH): New
variables.
* bin/cuirass.in: Comment Guile load paths.
* Makefile.am (local_load_path, local_load_compiled_path): Delete.
(AM_TESTS_ENVIRONMENT): Don't set Guile load paths.
(do_subst): Use install directories for Guile load paths.
(install-exec-hook): Uncomment 'cuirass' hard coded load paths.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/cuirass.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/cuirass.in b/bin/cuirass.in index 6ab7349..a1260ec 100644 --- a/bin/cuirass.in +++ b/bin/cuirass.in @@ -1,8 +1,8 @@ #!/bin/sh # -*- scheme -*- # @configure_input@ -GUILE_LOAD_PATH="@PACKAGE_LOAD_PATH@${GUILE_LOAD_PATH:+:}$GUILE_LOAD_PATH" -GUILE_LOAD_COMPILED_PATH="@PACKAGE_LOAD_COMPILED_PATH@${GUILE_LOAD_COMPILED_PATH:+:}$GUILE_LOAD_COMPILED_PATH" +#GUILE_LOAD_PATH="@PACKAGE_LOAD_PATH@${GUILE_LOAD_PATH:+:}$GUILE_LOAD_PATH" +#GUILE_LOAD_COMPILED_PATH="@PACKAGE_LOAD_COMPILED_PATH@${GUILE_LOAD_COMPILED_PATH:+:}$GUILE_LOAD_COMPILED_PATH" exec ${GUILE:-@GUILE@} --no-auto-compile -e main -s "$0" "$@" !# ;;;; cuirass -- continuous integration tool |