Your message dated Fri, 23 Aug 2019 12:00:30 +0100 with message-id <[email protected]> has caused the report #935504, regarding grub: update-grub doesn't recognise short option -v to be marked as having been forwarded to the upstream software author(s) [email protected]
(NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 935504: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=935504 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---The short form of "--version" that grub-mkconfig accepts is "-V", not "-v". Fixes Debian bug #935504. Signed-off-by: Colin Watson <[email protected]> --- util/grub-mkconfig.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/grub-mkconfig.in b/util/grub-mkconfig.in index 9f477ff05..7660016b3 100644 --- a/util/grub-mkconfig.in +++ b/util/grub-mkconfig.in @@ -59,7 +59,7 @@ usage () { echo print_option_help "-o, --output=$(gettext FILE)" "$(gettext "output generated config to FILE [default=stdout]")" print_option_help "-h, --help" "$(gettext "print this message and exit")" - print_option_help "-v, --version" "$(gettext "print the version information and exit")" + print_option_help "-V, --version" "$(gettext "print the version information and exit")" echo gettext "Report bugs to <[email protected]>."; echo } -- 2.17.1
--- End Message ---

