diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-01-24 22:10:07 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-01-25 16:20:23 +0100 |
commit | 9e55f04a4bb5b9d4f468d50c1ce8e19e8b0d0bd8 (patch) | |
tree | cdb76f77b74ee10d8ab9e802fbaac3bf8c70b311 | |
parent | 4ec2e92ddbcb06616094d054b6f19c73f617da27 (diff) | |
download | patches-9e55f04a4bb5b9d4f468d50c1ce8e19e8b0d0bd8.tar patches-9e55f04a4bb5b9d4f468d50c1ce8e19e8b0d0bd8.tar.gz |
profiles: Remove misleading message.
Fixes <http://bugs.gnu.org/16484>.
Reported by Andreas Enge <andreas@enge.fr>.
* guix/profiles.scm (profile-derivation)[builder]: Remove "building
profile '~a' with ~a packages" message.
-rw-r--r-- | guix/profiles.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/guix/profiles.scm b/guix/profiles.scm index 9b5c5f515c..1ff6c97f9f 100644 --- a/guix/profiles.scm +++ b/guix/profiles.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org> ;;; ;;; This file is part of GNU Guix. @@ -238,8 +238,6 @@ the given MANIFEST." (let ((output (assoc-ref %outputs "out")) (inputs (map cdr %build-inputs))) - (format #t "building profile '~a' with ~a packages...~%" - output (length inputs)) (union-build output inputs #:log-port (%make-void-port "w")) (call-with-output-file (string-append output "/manifest") |