diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-09-23 10:44:29 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-09-23 11:08:15 +0200 |
commit | a75e936f4c4f4ca276c7792dc978844aaa719c29 (patch) | |
tree | e613b62c101cc9a430dd174ed0ff0865cc266519 /doc/Makefile.am | |
parent | 8b8df86fe589bff5b1f0fc93be53cad9a9c17596 (diff) | |
download | gnutls-a75e936f4c4f4ca276c7792dc978844aaa719c29.tar.gz |
Turn off auto-compilation when using Guile 1.9+.
* guile/src/Makefile.am (GUILE_FOR_BUILD): Turn off auto-compilation
with Guile 1.9+.
* guile/tests/Makefile.am (TESTS_ENVIRONMENT): Likewise.
* doc/Makefile.am (GUILE_FOR_BUILD): Likewise.
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 2dbaaf0f64..e3a20467b3 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -187,7 +187,9 @@ EXTRA_DIST += $(guile_texi) extract-guile-c-doc.scm if HAVE_GUILE -GUILE_FOR_BUILD = $(GUILE) -L $(top_srcdir)/guile/modules +GUILE_FOR_BUILD = \ + GUILE_AUTO_COMPILE=0 \ + $(GUILE) -L $(top_srcdir)/guile/modules SNARF_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) \ -I$(top_srcdir)/lib/includes -I$(top_builddir)/lib/includes \ |