diff options
author | David Thompson <dthompson2@worcester.edu> | 2023-09-23 17:12:30 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2023-09-23 17:15:11 -0400 |
commit | a86f4f6d53d05d6e1027619d00882feff1b857a8 (patch) | |
tree | 504d35823207ecbd7e2cafdd46f62e8aede4dde8 /configure.ac | |
parent | ea0d3009fa7020d75c1657cb532570305de699a6 (diff) |
Use entire load path from the build environment.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 779d240..464bfdb 100644 --- a/configure.ac +++ b/configure.ac @@ -19,9 +19,9 @@ GUILE_MODULE_REQUIRED([chickadee]) GUILE_MODULE_REQUIRED([catbird]) # Installation directories for .scm and .go files. -guilemoduledir="${datarootdir}/guile/site/$GUILE_EFFECTIVE_VERSION" -guileobjectdir="${libdir}/guile/$GUILE_EFFECTIVE_VERSION/site-ccache" -AC_SUBST([guilemoduledir]) -AC_SUBST([guileobjectdir]) +guilemodulepath="${datarootdir}/guile/site/$GUILE_EFFECTIVE_VERSION${GUILE_LOAD_PATH:+:}:$GUILE_LOAD_PATH" +guileobjectpath="${libdir}/guile/$GUILE_EFFECTIVE_VERSION/site-ccache${GUILE_LOAD_COMPILED_PATH:+:}$GUILE_LOAD_COMPILED_PATH" +AC_SUBST([guilemodulepath]) +AC_SUBST([guileobjectpath]) AC_OUTPUT |