edit: Do not honor 'GUIX_BUILD_OPTIONS'.

* guix/scripts/edit.scm (guix-edit)[parse-arguments]: New procedure.
Use it.
This commit is contained in:
Ludovic Courtès 2016-08-19 17:33:10 +02:00
parent af493726ce
commit 00677a7e55
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 10 additions and 3 deletions

View File

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015, 2016 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015 Mathieu Lirzin <mthl@gnu.org>
;;;
;;; This file is part of GNU Guix.
@ -74,9 +74,16 @@ line."
(define (guix-edit . args)
(define (parse-arguments)
;; Return the list of package names.
(args-fold* args %options
(lambda (opt name arg result)
(leave (_ "~A: unrecognized option~%") name))
cons
'()))
(with-error-handling
(let* ((specs (parse-command-line args %options '(())
#:argument-handler cons))
(let* ((specs (reverse (parse-arguments)))
(packages (map specification->package specs)))
(for-each (lambda (package)
(unless (package-location package)