From 5e89cd13c077de1419cab140590f76f92a457807 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Fri, 5 Jun 2009 11:47:34 +0200 Subject: [PATCH] disable autocompilation when running guile-tools compile * module/scripts/compile.scm (compile): Disable autocompilation when running guile-tools compile. --- module/scripts/compile.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/module/scripts/compile.scm b/module/scripts/compile.scm index f0294b5d6..84d235b8a 100644 --- a/module/scripts/compile.scm +++ b/module/scripts/compile.scm @@ -111,10 +111,13 @@ Compile each Guile source file FILE into a Guile object. -f, --from=LANG specify a source language other than `scheme' -t, --to=LANG specify a target language other than `objcode' +Note that autocompilation will be turned off. + Report bugs to .~%") (exit 0))) (set! %load-path (append load-path %load-path)) + (set! %load-should-autocompile #f) (if (and output-file (or (null? input-files)