diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2021-03-18 18:40:47 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2021-03-18 18:41:13 -0400 |
commit | 65967b4305b077654b9e6aa370a239039ac2f877 (patch) | |
tree | 390cde238467e23acc2b5242cab54f4af0cd2703 | |
parent | 620449c44dcd647adee7c1b3411d30e48b0571af (diff) |
Fix moddir/godir in Makefile.am to use Guile effective version.
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 193c44b..3cfb162 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,8 +16,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)/site-ccache SOURCES = \ srt2vtt.scm \ |