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.
This commit is contained in:
		
							parent
							
								
									4ec2e92ddb
								
							
						
					
					
						commit
						9e55f04a4b
					
				
					 1 changed files with 1 additions and 3 deletions
				
			
		| 
						 | 
					@ -1,5 +1,5 @@
 | 
				
			||||||
;;; GNU Guix --- Functional package management for GNU
 | 
					;;; 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>
 | 
					;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
 | 
				
			||||||
;;;
 | 
					;;;
 | 
				
			||||||
;;; This file is part of GNU Guix.
 | 
					;;; This file is part of GNU Guix.
 | 
				
			||||||
| 
						 | 
					@ -238,8 +238,6 @@ the given MANIFEST."
 | 
				
			||||||
 | 
					
 | 
				
			||||||
       (let ((output (assoc-ref %outputs "out"))
 | 
					       (let ((output (assoc-ref %outputs "out"))
 | 
				
			||||||
             (inputs (map cdr %build-inputs)))
 | 
					             (inputs (map cdr %build-inputs)))
 | 
				
			||||||
         (format #t "building profile '~a' with ~a packages...~%"
 | 
					 | 
				
			||||||
                 output (length inputs))
 | 
					 | 
				
			||||||
         (union-build output inputs
 | 
					         (union-build output inputs
 | 
				
			||||||
                      #:log-port (%make-void-port "w"))
 | 
					                      #:log-port (%make-void-port "w"))
 | 
				
			||||||
         (call-with-output-file (string-append output "/manifest")
 | 
					         (call-with-output-file (string-append output "/manifest")
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue