diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2016-11-12 17:36:18 +0100 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2016-11-12 17:49:20 +0100 |
commit | 4f0d665746e0c6efe43c0f281e0eaac5012c79da (patch) | |
tree | 84d9b6e29986620f232761a9c246927d34aa3b7b /build-aux | |
parent | 1e5012ca803bbc4e08982f99d6c902e75dcb4421 (diff) | |
download | cuirass-4f0d665746e0c6efe43c0f281e0eaac5012c79da.tar cuirass-4f0d665746e0c6efe43c0f281e0eaac5012c79da.tar.gz |
cuirass: Hard code Guile load paths.
* configure.ac (bin/cuirass, bin/evaluate): Let 'make' generate them.
* bin/cuirass.in: Hard code load paths to find Cuirass modules.
* Makefile.am (do_subst): Update substitution.
(bin/cuirass, bin/evaluate): New rules.
(EXTRA_DIST): Distribute 'bin/cuirass.in' and 'bin/evaluate.in'.
(MOSTLYCLEANFILES): Add '$(bin_SCRIPTS)'.
(install-exec-hook): New target.
(local_load_path, local_load_compiled_path): New variables.
(AM_TESTS_ENVIRONMENT): Set Guile load paths.
* build-aux/pre-inst-env.in: Don't modify Guile load paths.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/pre-inst-env.in | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/build-aux/pre-inst-env.in b/build-aux/pre-inst-env.in index c8deb2d..abf9c35 100644 --- a/build-aux/pre-inst-env.in +++ b/build-aux/pre-inst-env.in @@ -20,10 +20,6 @@ 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/src${GUILE_LOAD_COMPILED_PATH:+:}$GUILE_LOAD_COMPILED_PATH" -GUILE_LOAD_PATH="$abs_top_builddir/src:$abs_top_srcdir/src${GUILE_LOAD_PATH:+:}$GUILE_LOAD_PATH" -export GUILE_LOAD_COMPILED_PATH GUILE_LOAD_PATH - CUIRASS_DATADIR="$abs_top_srcdir/src" export CUIRASS_DATADIR |