disable autocompilation when running guile-tools compile
authorAndy Wingo <wingo@pobox.com>
Fri, 5 Jun 2009 09:47:34 +0000 (11:47 +0200)
committerAndy Wingo <wingo@pobox.com>
Fri, 5 Jun 2009 09:47:34 +0000 (11:47 +0200)
* module/scripts/compile.scm (compile): Disable autocompilation when
  running guile-tools compile.

module/scripts/compile.scm

index f0294b5..84d235b 100644 (file)
@@ -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 <guile-user@gnu.org>.~%")
           (exit 0)))
 
     (set! %load-path (append load-path %load-path))
+    (set! %load-should-autocompile #f)
 
     (if (and output-file
              (or (null? input-files)