From 3f745ae39e4e1765861976a3e608ed476e7c87e3 Mon Sep 17 00:00:00 2001 From: Timothy Sample Date: Sat, 18 May 2019 15:37:50 -0400 Subject: [PATCH] Turn off auto-compile while compiling. This prevents Guile from complaining when compiling the project from within the Guix build environment. * build-aux/guile-rules.am: Set 'GUILE_AUTO_COMPILE' to '0' when compiling. --- build-aux/guile-rules.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-aux/guile-rules.am b/build-aux/guile-rules.am index 2314964..5a103d1 100644 --- a/build-aux/guile-rules.am +++ b/build-aux/guile-rules.am @@ -17,7 +17,8 @@ $(guile_install_go_files): install-nobase_dist_guilemoduleDATA GUILE_WARNINGS = -Wunbound-variable -Warity-mismatch -Wformat SUFFIXES = .scm .go .scm.go: - $(AM_V_GEN)$(top_builddir)/pre-inst-env \ + $(AM_V_GEN) GUILE_AUTO_COMPILE=0 \ + $(top_builddir)/pre-inst-env \ $(GUILD) compile $(GUILE_WARNINGS) -o "$@" "$<" EXTRA_DIST = $(GUILE_MODULES)