diff options
| author | Ludovic Courtès | 2012-06-15 10:04:38 +0200 |
|---|---|---|
| committer | Ludovic Courtès | 2012-06-15 10:04:38 +0200 |
| commit | 48e8333d91ea64ccbc6e694393783498f1aa5d4b (patch) | |
| tree | ecc5a34c3293f917caccbec65541ab410ecd291c /Makefile.am | |
| parent | 1273d44ac73fe7e33b51809d2d3000fde7c4d4e3 (diff) | |
build: Provide the right include path when building modules.
* Makefile.am (.scm.go): Add missing `-L $(top_srcdir)'.
Diffstat (limited to 'Makefile.am')
| -rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 5cc49a73f..0a5155205 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 |