diff options
author | Arun Isaac | 2022-06-23 21:41:11 +0530 |
---|---|---|
committer | Arun Isaac | 2022-06-23 21:41:11 +0530 |
commit | 4c64af33998fda099882c9ffcc6dc594d94134d2 (patch) | |
tree | 8cdac33d977407ddec609b554be5f4e0d48739db | |
parent | b9c077b76b66273ad7557f097d6271930600c41d (diff) | |
download | tissue-4c64af33998fda099882c9ffcc6dc594d94134d2.tar.gz tissue-4c64af33998fda099882c9ffcc6dc594d94134d2.tar.lz tissue-4c64af33998fda099882c9ffcc6dc594d94134d2.zip |
Makefile: Disable auto-compile when building guile source.
* Makefile (%.go): Disable auto-compile.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ godir = $(libdir)/guile/$(guile_effective_version)/site-ccache/$(top_level_modul all: $(objects) %.go: %.scm - $(GUILD) compile -L . -o $@ $< + GUILE_AUTO_COMPILE=0 $(GUILD) compile -L . -o $@ $< check: ; |