diff options
author | Ludovic Courtes | 2008-02-15 17:48:55 +0100 |
---|---|---|
committer | Ludovic Courtes | 2008-02-15 17:48:55 +0100 |
commit | 707343e5eb8ee04c0e54091b86da6a5a49cc9748 (patch) | |
tree | abe8d1d747535e0edf63a76c8935a641fc1f9019 /guile-lint.am | |
parent | 3908f426de0cefb90d5bdb2ac979e91505f78c86 (diff) | |
download | skribilo-707343e5eb8ee04c0e54091b86da6a5a49cc9748.tar.gz skribilo-707343e5eb8ee04c0e54091b86da6a5a49cc9748.tar.lz skribilo-707343e5eb8ee04c0e54091b86da6a5a49cc9748.zip |
Fix Guile-Lint support on NixOS.
Diffstat (limited to 'guile-lint.am')
-rw-r--r-- | guile-lint.am | 6 |
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 |