aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-04-14 22:33:03 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2023-04-14 22:33:03 +0200
commit4c39bfebfcbf598936a67b4566f2bf2c18a97a90 (patch)
tree907236063aa161ff1ee56ee5657c3b96d442ea94
parentFix propfind. (diff)
downloadcalp-4c39bfebfcbf598936a67b4566f2bf2c18a97a90.tar.gz
calp-4c39bfebfcbf598936a67b4566f2bf2c18a97a90.tar.xz
Disable auto_compile while compiling.
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f61b2797..7c51dac5 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,8 @@ SCM_FILES = $(shell find module/ -type f -name \*.scm)
GO_FILES = $(SCM_FILES:module/%.scm=obj-$(GUILE_VERSION)/%.go)
GUILE_ENV = GUILE_LOAD_PATH=$(PWD)/module \
- GUILE_LOAD_COMPILED_PATH=$(PWD)/obj-$(GUILE_VERSION)
+ GUILE_LOAD_COMPILED_PATH=$(PWD)/obj-$(GUILE_VERSION) \
+ GUILE_AUTO_COMPILE=0
GUILE_C_FLAGS = -Lmodule \
-Wshadowed-toplevel -Wunbound-variable \