diff options
author | Markus Armbruster <armbru@redhat.com> | 2015-04-02 11:40:21 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2015-05-14 18:37:14 +0200 |
commit | c70cef5bd48c7be603f75a7b5346db032a31b470 (patch) | |
tree | 1e9226b0c41fcc6f46eecc5e451b824cb0afcda2 /scripts | |
parent | df3e21a0e0edd30ea2e7c9b09b05feaaa297c718 (diff) | |
download | hqemu-c70cef5bd48c7be603f75a7b5346db032a31b470.zip hqemu-c70cef5bd48c7be603f75a7b5346db032a31b470.tar.gz |
qapi: qapi-event.py option -b does nothing, drop it
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/qapi-event.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/scripts/qapi-event.py b/scripts/qapi-event.py index a7e0033..3e1f4cf 100644 --- a/scripts/qapi-event.py +++ b/scripts/qapi-event.py @@ -220,8 +220,8 @@ const char *%(event_enum_name)s_lookup[] = { # Start the real job try: - opts, args = getopt.gnu_getopt(sys.argv[1:], "chbp:i:o:", - ["source", "header", "builtins", "prefix=", + opts, args = getopt.gnu_getopt(sys.argv[1:], "chp:i:o:", + ["source", "header", "prefix=", "input-file=", "output-dir="]) except getopt.GetoptError, err: print str(err) @@ -235,7 +235,6 @@ h_file = 'qapi-event.h' do_c = False do_h = False -do_builtins = False for o, a in opts: if o in ("-p", "--prefix"): @@ -248,8 +247,6 @@ for o, a in opts: do_c = True elif o in ("-h", "--header"): do_h = True - elif o in ("-b", "--builtins"): - do_builtins = True if not do_c and not do_h: do_c = True |