Skip to content
Snippets Groups Projects
Unverified Commit c397dfca authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

build: Explicitly flush the "LOAD" and "GUILEC" lines.

* build-aux/compile-all.scm <top level>: Add calls to 'force-output'
in the #:report-load and #:report-compilation procedures.  Fixes a
regression introduced in 2890ad33
whereby compilation output would be buffered, leading to a weird
visual effect.
parent dd1640ee
No related branches found
No related tags found
No related merge requests found
......@@ -92,8 +92,10 @@ (define* (parallel-job-count #:optional (flags (getenv "MAKEFLAGS")))
#:host host
#:report-load (lambda (file total completed)
(when file
(format #t " LOAD ~a~%" file)))
(format #t " LOAD ~a~%" file)
(force-output)))
#:report-compilation (lambda (file total completed)
(when file
(format #t " GUILEC ~a~%"
(scm->go file)))))))
(scm->go file))
(force-output))))))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment