qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 4/4] linux-user: Treat --foo options the same as -fo


From: meadori
Subject: [Qemu-devel] [PATCH 4/4] linux-user: Treat --foo options the same as -foo
Date: Mon, 6 Jul 2015 11:03:41 -0700

From: Meador Inge <address@hidden>

The system mode binaries provide a similar alias
and it makes common options like --version and --help
work as expected.

Signed-off-by: Meador Inge <address@hidden>
---
 linux-user/main.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/linux-user/main.c b/linux-user/main.c
index 94badfc..adf6fb1 100644
--- a/linux-user/main.c
+++ b/linux-user/main.c
@@ -3801,6 +3801,10 @@ static int parse_args(int argc, char **argv)
         if (!strcmp(r, "-")) {
             break;
         }
+        /* Treat --foo the same as -foo.  */
+        if (r[0] == '-') {
+            r++;
+        }
 
         for (arginfo = arg_table; arginfo->handle_opt != NULL; arginfo++) {
             if (!strcmp(r, arginfo->argv)) {
-- 
1.8.1.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]