summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtes2008-02-15 17:48:55 +0100
committerLudovic Courtes2008-02-15 17:48:55 +0100
commit707343e5eb8ee04c0e54091b86da6a5a49cc9748 (patch)
treeabe8d1d747535e0edf63a76c8935a641fc1f9019
parent3908f426de0cefb90d5bdb2ac979e91505f78c86 (diff)
downloadskribilo-707343e5eb8ee04c0e54091b86da6a5a49cc9748.tar.gz
skribilo-707343e5eb8ee04c0e54091b86da6a5a49cc9748.tar.lz
skribilo-707343e5eb8ee04c0e54091b86da6a5a49cc9748.zip
Fix Guile-Lint support on NixOS.
-rw-r--r--guile-lint.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/guile-lint.am b/guile-lint.am
index 9fb1e55..7edf72d 100644
--- a/guile-lint.am
+++ b/guile-lint.am
@@ -9,7 +9,11 @@ if HAVE_GUILE_LINT
# reports errors (e.g., with macros). So better ignore its exit code
# for now.
+# Note: We re-export `$GUILE' to make sure Guile-Lint uses the same
+# Guile as we do, e.g., on NixOS.
+
all-local: $(dist_module_DATA)
- -$(GUILE_LINT) -L $(top_srcdir)/src/guile \
+ -GUILE="$(GUILE)" \
+ $(GUILE_LINT) -L $(top_srcdir)/src/guile \
-L $(top_builddir)/src/guile -k $^
endif