guix-build: Fix the "unrecognized option" error message.

* guix-build.in (guix-build): Show the option name when an unrecognized
  option is passed.
This commit is contained in:
Ludovic Courtès 2012-08-31 17:05:34 +02:00
parent e815763e69
commit 8759a648ba
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ Report bugs to: ~a.~%") "@PACKAGE_BUGREPORT@"))
;; Return the alist of option values.
(args-fold args %options
(lambda (opt name arg result)
(leave (_ "~A: unrecognized option~%") opt))
(leave (_ "~A: unrecognized option~%") name))
(lambda (arg result)
(alist-cons 'argument arg result))
%default-options))