Skip to content

Commit

Permalink
fix invalid script path (#975)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sauci committed Jul 6, 2018
1 parent 0b3cd70 commit 8c55ca7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions qemu/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -140,16 +140,16 @@ gen-out-type = $(subst .,-,$(suffix $@))

qapi-py = $(SRC_PATH)/scripts/qapi.py $(SRC_PATH)/scripts/ordereddict.py

qapi-modules = $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/qapi/common.json
qapi-modules = qapi-schema.json qapi/common.json

qapi-types.c qapi-types.h :\
$(qapi-modules) $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \
$(call quiet-command,$(PYTHON) scripts/qapi-types.py \
$(gen-out-type) -o "." -b -i $<, \
" GEN $@")
qapi-visit.c qapi-visit.h :\
$(qapi-modules) $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \
$(call quiet-command,$(PYTHON) scripts/qapi-visit.py \
$(gen-out-type) -o "." -b -i $<, \
" GEN $@")

Expand Down

0 comments on commit 8c55ca7

Please sign in to comment.