fix vmlinux parameter for kpatch-build

It was missing in getopt arguments.

Signed-off-by: Jan Stancek <jstancek@redhat.com>
This commit is contained in:
Jan Stancek 2014-05-27 19:33:46 +02:00
parent 6aee215b04
commit e89f6fa679

View File

@ -92,7 +92,7 @@ usage() {
echo " -d, --debug Keep scratch files in /tmp" >&2
}
options=$(getopt -o hr:s:c:d -l "help,sourcerpm:,sourcedir:,config:,debug" -- "$@") || die "getopt failed"
options=$(getopt -o hr:s:c:v:d -l "help,sourcerpm:,sourcedir:,config:,vmlinux:,debug" -- "$@") || die "getopt failed"
eval set -- "$options"