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>
This commit is contained in:
parent
df3e21a0e0
commit
c70cef5bd4
2
Makefile
2
Makefile
@ -273,7 +273,7 @@ $(qapi-modules) $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
|
|||||||
qapi-event.c qapi-event.h :\
|
qapi-event.c qapi-event.h :\
|
||||||
$(qapi-modules) $(SRC_PATH)/scripts/qapi-event.py $(qapi-py)
|
$(qapi-modules) $(SRC_PATH)/scripts/qapi-event.py $(qapi-py)
|
||||||
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-event.py \
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-event.py \
|
||||||
$(gen-out-type) -o "." -b -i $<, \
|
$(gen-out-type) -o "." -i $<, \
|
||||||
" GEN $@")
|
" GEN $@")
|
||||||
qmp-commands.h qmp-marshal.c :\
|
qmp-commands.h qmp-marshal.c :\
|
||||||
$(qapi-modules) $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
|
$(qapi-modules) $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
|
||||||
|
@ -220,8 +220,8 @@ const char *%(event_enum_name)s_lookup[] = {
|
|||||||
# Start the real job
|
# Start the real job
|
||||||
|
|
||||||
try:
|
try:
|
||||||
opts, args = getopt.gnu_getopt(sys.argv[1:], "chbp:i:o:",
|
opts, args = getopt.gnu_getopt(sys.argv[1:], "chp:i:o:",
|
||||||
["source", "header", "builtins", "prefix=",
|
["source", "header", "prefix=",
|
||||||
"input-file=", "output-dir="])
|
"input-file=", "output-dir="])
|
||||||
except getopt.GetoptError, err:
|
except getopt.GetoptError, err:
|
||||||
print str(err)
|
print str(err)
|
||||||
@ -235,7 +235,6 @@ h_file = 'qapi-event.h'
|
|||||||
|
|
||||||
do_c = False
|
do_c = False
|
||||||
do_h = False
|
do_h = False
|
||||||
do_builtins = False
|
|
||||||
|
|
||||||
for o, a in opts:
|
for o, a in opts:
|
||||||
if o in ("-p", "--prefix"):
|
if o in ("-p", "--prefix"):
|
||||||
@ -248,8 +247,6 @@ for o, a in opts:
|
|||||||
do_c = True
|
do_c = True
|
||||||
elif o in ("-h", "--header"):
|
elif o in ("-h", "--header"):
|
||||||
do_h = True
|
do_h = True
|
||||||
elif o in ("-b", "--builtins"):
|
|
||||||
do_builtins = True
|
|
||||||
|
|
||||||
if not do_c and not do_h:
|
if not do_c and not do_h:
|
||||||
do_c = True
|
do_c = True
|
||||||
|
Loading…
Reference in New Issue
Block a user