[Spice-devel] [PATCH spice-common] codegen: Ignore path generating include guards

Frediano Ziglio fziglio at redhat.com
Fri Oct 18 14:59:06 UTC 2019


Make sure that guard do no change building out-of-tree or
with Meson.

Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
---
 python_modules/marshal.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/python_modules/marshal.py b/python_modules/marshal.py
index a09b614..e9130f3 100644
--- a/python_modules/marshal.py
+++ b/python_modules/marshal.py
@@ -2,13 +2,14 @@
 from . import ptypes
 from . import codegen
 import re
+import os
 
 def write_includes(writer):
     writer.header.writeln("#include <spice/protocol.h>")
     writer.header.writeln('#include "common/marshaller.h"')
     writer.header.newline()
     if writer.header.has_option("dest_file"):
-        src = writer.header.options["dest_file"]
+        src = os.path.basename(writer.header.options["dest_file"])
     else:
         src = "generated_headers.h"
     src = re.sub(r'(?i)[^a-z0-9]+', '_', src)
-- 
2.21.0



More information about the Spice-devel mailing list