[Qemu-devel] [PULL 15/22] qemu-options-wrapper.h: fix include patch

Michael S. Tsirkin posted 22 patches 7 years, 11 months ago
Only 21 patches received!
[Qemu-devel] [PULL 15/22] qemu-options-wrapper.h: fix include patch
Posted by Michael S. Tsirkin 7 years, 11 months ago
qemu-options.def is included from build directory
not from source directory.
Use include <> accordingly: include "" means
look in the current (source) directory search first.

cc: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 qemu-options-wrapper.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qemu-options-wrapper.h b/qemu-options-wrapper.h
index 13bfea0..ec4cb8c 100644
--- a/qemu-options-wrapper.h
+++ b/qemu-options-wrapper.h
@@ -29,7 +29,7 @@
 #error "qemu-options-wrapper.h included with no option defined"
 #endif
 
-#include "qemu-options.def"
+#include <qemu-options.def>
 
 #undef DEF
 #undef DEFHEADING
-- 
MST