Skip to content
Snippets Groups Projects
Commit dfd1d5ed authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

guix package: Remove leftover internal procedure.

Reported by Alex Kost <alezost@gmail.com>.

* guix/scripts/package.scm (guix-package)[process-actions]: Remove
  'same-package?'.
parent b36fcf95
No related branches found
No related tags found
No related merge requests found
...@@ -796,12 +796,6 @@ (define (process-actions opts) ...@@ -796,12 +796,6 @@ (define (process-actions opts)
(define dry-run? (assoc-ref opts 'dry-run?)) (define dry-run? (assoc-ref opts 'dry-run?))
(define profile (assoc-ref opts 'profile)) (define profile (assoc-ref opts 'profile))
(define (same-package? entry name output)
(match entry
(($ <manifest-entry> entry-name _ entry-output _ ...)
(and (equal? name entry-name)
(equal? output entry-output)))))
(define current-generation-number (define current-generation-number
(generation-number profile)) (generation-number profile))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment