diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-11-13 11:35:05 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-13 11:35:13 +0100 |
commit | 7f614a747c233ad6f2c76b144ef235412891b3a8 (patch) | |
tree | 291546c8fda297dfbf4cd8a0f5ba9a6ff142c920 /guix/derivations.scm | |
parent | 3fd242e0970606edd7ae6fb39cda1f551f29939e (diff) |
derivations: Clarify message produced by 'graft-derivation'.
* guix/derivations.scm (graft-derivation): Use the term "grafting" in
the build message.
Diffstat (limited to 'guix/derivations.scm')
-rw-r--r-- | guix/derivations.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/derivations.scm b/guix/derivations.scm index b2a5c6b976..b1ba573190 100644 --- a/guix/derivations.scm +++ b/guix/derivations.scm @@ -1045,7 +1045,7 @@ applied." (let ((mapping ',mapping)) (for-each (lambda (input output) - (format #t "rewriting '~a' to '~a'...~%" input output) + (format #t "grafting '~a' -> '~a'...~%" input output) (rewrite-directory input output `((,input . ,output) ,@mapping))) |