diff options
author | Daniel Veillard <veillard@redhat.com> | 2006-06-26 15:02:18 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@redhat.com> | 2006-06-26 15:02:18 +0000 |
commit | 908443e1f3143f460849e4b220eb29bdd56569fc (patch) | |
tree | 88420a88f3b9108fa92ecb39c030dc2cf00ead08 /generator.py | |
parent | 506fb7d8868efb4eb24b003b42cce14f9a0b8847 (diff) | |
download | libvirt-python-v6-908443e1f3143f460849e4b220eb29bdd56569fc.tar.gz libvirt-python-v6-908443e1f3143f460849e4b220eb29bdd56569fc.tar.xz libvirt-python-v6-908443e1f3143f460849e4b220eb29bdd56569fc.zip |
* configure.in libvirt.spec.in docs/examples/* include/Makefile.am
include/libvirt/virterror.h python/generator.py python/libvir.c
python/libvirt_wrap.h src/driver.h src/internal.h src/test.h
src/virsh.c src/virterror.c src/xend_internal.c src/xend_internal.h
src/xml.c src/xml.h: moved the includes from include/ to
include/libvirt to reflect the installed include tree. This
avoid using "" in the includes themselves.
Daniel
Diffstat (limited to 'generator.py')
-rwxr-xr-x | generator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generator.py b/generator.py index 497f3b4..3345ac8 100755 --- a/generator.py +++ b/generator.py @@ -480,7 +480,7 @@ def buildStubs(): wrapper = open("libvirt-py.c", "w") wrapper.write("/* Generated */\n\n") wrapper.write("#include <Python.h>\n") - wrapper.write("#include <libvirt.h>\n") + wrapper.write("#include <libvirt/libvirt.h>\n") wrapper.write("#include \"libvirt_wrap.h\"\n") wrapper.write("#include \"libvirt-py.h\"\n\n") for function in functions.keys(): |