derivations: Make the "grafting..." message directly visible.

* guix/derivations.scm (graft-derivation)[build]: Add call to
  'force-output'.
master
Ludovic Courtès 2015-02-11 11:11:01 +01:00
parent ab3872de4f
commit fbe952c99f
1 changed files with 1 additions and 0 deletions

View File

@ -1095,6 +1095,7 @@ applied."
(let ((mapping ',mapping))
(for-each (lambda (input output)
(format #t "grafting '~a' -> '~a'...~%" input output)
(force-output)
(rewrite-directory input output
`((,input . ,output)
,@mapping)))