Adding upstream version 1:10.0.2+ds.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
parent
bf2768bd0f
commit
ea34ddeea6
37998 changed files with 9510514 additions and 0 deletions
19
scripts/qapi-gen.py
Normal file
19
scripts/qapi-gen.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
# This work is licensed under the terms of the GNU GPL, version 2 or later.
|
||||
# See the COPYING file in the top-level directory.
|
||||
|
||||
"""
|
||||
QAPI code generation execution shim.
|
||||
|
||||
This standalone script exists primarily to facilitate the running of the QAPI
|
||||
code generator without needing to install the python module to the current
|
||||
execution environment.
|
||||
"""
|
||||
|
||||
import sys
|
||||
|
||||
from qapi import main
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.exit(main.main())
|
Loading…
Add table
Add a link
Reference in a new issue