diff options
author | David Thompson <dthompson2@worcester.edu> | 2016-02-16 15:03:30 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2016-02-16 15:03:30 -0500 |
commit | 2fd5092a197c31840e9e6de34d226a141e13c5d7 (patch) | |
tree | 05ed2c5f418243c998962c8c7f01e77917b275f1 | |
parent | 1b969b7db38b0d5d14108848ef159d996772a764 (diff) |
build: Fix installation directories.
* Makefile.am: Use $GUILE_EFFECTIVE_VERSION to install modules to the
correct place.
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 191e28c..a0549db 100644 --- a/Makefile.am +++ b/Makefile.am @@ -35,8 +35,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/$(GUILE_EFFECTIVE_VERSION) +godir=$(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/ccache SOURCES = \ syntax-highlight/utils.scm \ |