From 87bc7c81650fef2ee8bc83bceab6ea565a47f2b5 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Sun, 21 Feb 2010 15:35:37 -0500 Subject: [PATCH] The load-module routine tries to interpret relative paths relative to the module currently being loaded (i.e., make-texinfo.scm itself), resulting in confusing behavior for offset builds. So, don't use them. * doc/ref/Makefile.am ($(snarf_doc).texi): Use an absolute path for the input file. --- doc/ref/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ref/Makefile.am b/doc/ref/Makefile.am index a5873434d..5e9c5b5ad 100644 --- a/doc/ref/Makefile.am +++ b/doc/ref/Makefile.am @@ -150,7 +150,7 @@ include standard-library.am $(snarf_doc).texi: $(standard_library_scm_files) GUILE_AUTO_COMPILE=0 \ "$(preinstguile)" "$(srcdir)/make-texinfo.scm" \ - "$(srcdir)/$(snarf_doc).scm" > "$@.tmp" + "$(abs_srcdir)/$(snarf_doc).scm" > "$@.tmp" mv "$@.tmp" "$@" CLEANFILES += $(snarf_doc).texi -- 2.20.1