Skip to content
Snippets Groups Projects
Commit 48e8333d authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

build: Provide the right include path when building modules.

* Makefile.am (.scm.go): Add missing `-L $(top_srcdir)'.
parent 1273d44a
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,8 @@ CLEANFILES = $(GOBJECTS) *.log
$(MKDIR_P) `dirname "$@"`
GUILE_AUTO_COMPILE=0 \
GUILE_LOAD_COMPILED_PATH="$(top_builddir):$$GUILE_LOAD_COMPILED_PATH" \
$(GUILD) compile -Wformat -Wunbound-variable -Warity-mismatch \
$(GUILD) compile -L "$(top_srcdir)" \
-Wformat -Wunbound-variable -Warity-mismatch \
-o "$@" "$<"
SUFFIXES = .go
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment