diff --git a/guix/scripts/package.scm b/guix/scripts/package.scm index 7189256e0f..bf39259922 100644 --- a/guix/scripts/package.scm +++ b/guix/scripts/package.scm @@ -174,10 +174,10 @@ DURATION-RELATION with the current time." packages that will/would be installed and removed." ;; TODO: Report upgrades more clearly. (match remove - ((($ name version _ path _) ..1) + ((($ name version output path _) ..1) (let ((len (length name)) - (remove (map (cut format #f " ~a-~a\t~a" <> <> <>) - name version path))) + (remove (map (cut format #f " ~a-~a\t~a\t~a" <> <> <> <>) + name version output path))) (if dry-run? (format (current-error-port) (N_ "The following package would be removed:~%~{~a~%~}~%"