Remove -V in grub-mkrescue.c
authorVladimir Serbinenko <phcoder@gmail.com>
Fri, 24 Apr 2015 15:52:30 +0000 (17:52 +0200)
committerVladimir Serbinenko <phcoder@gmail.com>
Fri, 24 Apr 2015 15:52:30 +0000 (17:52 +0200)
It clashhes with -V which is alias to -volid.

util/grub-mkrescue.c

index 5d3ec0d..815fc91 100644 (file)
@@ -409,7 +409,7 @@ args_to_eat (const char *arg)
            return 2;
          return 1;
        }
-      if (arg[1] == '?' || arg[1] == 'V')
+      if (arg[1] == '?')
        return 1;
     }
   return 0;