[Spice-commits] python_modules/marshal.py

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Mon Nov 4 11:08:42 UTC 2019


 python_modules/marshal.py |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit ead7790d47b67de543b5e39ca3b307346484d3b7
Author: Frediano Ziglio <fziglio at redhat.com>
Date:   Thu Oct 17 19:13:25 2019 +0100

    codegen: Ignore path generating include guards
    
    Make sure that guard do no change building out-of-tree or
    with Meson.
    
    Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
    Acked-by: Uri Lublin <uril at redhat.com>

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)


More information about the Spice-commits mailing list