diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2017-01-08 15:26:43 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2017-01-08 15:26:43 -0600 |
commit | ebba397da2547254ebc47f4c65773c9a46026356 (patch) | |
tree | 0d8e4d9c8828643bdaedeb40a46d5d8634877b49 | |
parent | 638dea67896ab4d6048e297bc20b93112f9294a7 (diff) | |
download | 8sync-ebba397da2547254ebc47f4c65773c9a46026356.tar.gz |
build: Fix install targets to point to Guile 2.2 instead of 2.0.
* Makefile.am (modir, godir): Fix install targets to point to Guile 2.2
instead of 2.0.
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 6dd06e6..8e03fb0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -41,8 +41,8 @@ SUFFIXES = .scm .go .scm.go: $(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile $(GUILE_WARNINGS) -o "$@" "$<" -moddir=$(prefix)/share/guile/site/2.0 -godir=$(libdir)/guile/2.0/ccache +moddir=$(prefix)/share/guile/site/2.2 +godir=$(libdir)/guile/2.2/ccache SOURCES = \ 8sync.scm \ |