summary refs log tree commit diff stats
path: root/scripts/tracetool/backend/log.py
diff options
context:
space:
mode:
authoroltolm <oleg.tolmatcev@gmail.com>2025-06-13 00:15:22 +0200
committerStefan Hajnoczi <stefanha@redhat.com>2025-06-16 13:16:27 -0400
commit9761ad5f65d23f080b5a3479e52196fbce2e1506 (patch)
treebf023c2913bdd1855f0f83d1e46a2350d24a5af9 /scripts/tracetool/backend/log.py
parenta6f02277595136832c9e9bcaf447ab574f7b1128 (diff)
downloadfocaccia-qemu-9761ad5f65d23f080b5a3479e52196fbce2e1506.tar.gz
focaccia-qemu-9761ad5f65d23f080b5a3479e52196fbce2e1506.zip
meson: fix Windows build
The build fails on Windows. Replace calls to Unix programs like ´cat´,
´sed´ and ´true´ with calls to ´python´ and wrap calls to
´os.path.relpath´ in try-except because it can fail when the two paths
are on different drives. Make sure to convert the Windows paths to Unix
paths to prevent warnings in generated files.

Signed-off-by: oltolm <oleg.tolmatcev@gmail.com>
Message-id: 20250612221521.1109-2-oleg.tolmatcev@gmail.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'scripts/tracetool/backend/log.py')
-rw-r--r--scripts/tracetool/backend/log.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/tracetool/backend/log.py b/scripts/tracetool/backend/log.py
index de27b7e62e..17ba1cd90e 100644
--- a/scripts/tracetool/backend/log.py
+++ b/scripts/tracetool/backend/log.py
@@ -12,8 +12,6 @@ __maintainer__ = "Stefan Hajnoczi"
 __email__      = "stefanha@redhat.com"
 
 
-import os.path
-
 from tracetool import out
 
 
@@ -55,7 +53,7 @@ def generate_h(event, group):
         '    }',
         cond=cond,
         event_lineno=event.lineno,
-        event_filename=os.path.relpath(event.filename),
+        event_filename=event.filename,
         name=event.name,
         fmt=event.fmt.rstrip("\n"),
         argnames=argnames)