diff options
author | Arun Isaac | 2019-09-17 12:42:39 +0530 |
---|---|---|
committer | Arun Isaac | 2019-09-17 12:44:28 +0530 |
commit | 812933d29e57b2482781152933a963a1650fd548 (patch) | |
tree | e9ede22f95b81fe028753f7625ad5d860a3f1b2f | |
parent | d7079e5d9cba20e571b1f3f90dc62ffaa6f94727 (diff) | |
download | guile-email-812933d29e57b2482781152933a963a1650fd548.tar.gz guile-email-812933d29e57b2482781152933a963a1650fd548.tar.lz guile-email-812933d29e57b2482781152933a963a1650fd548.zip |
Install go files in libdir.
Guile looks for compiled go files in libdir. So, put them there.
* Makefile.am (godir): Set to libdir, instead of moddir.
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 213073e..a7a843f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -39,7 +39,7 @@ SUFFIXES = .scm .go $(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile $(GUILE_WARNINGS) -o "$@" "$<" moddir = $(prefix)/share/guile/site/$(GUILE_EFFECTIVE_VERSION) -godir = $(moddir) +godir = $(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/site-ccache SOURCES = \ email/base64.scm \ |