blob: d5e1ab4d5115d27ca1acc7c4f45525156d19dbdb [file] [log] [blame]
From a4bdc0416134477e4eae386db04b1de7491163bb Mon Sep 17 00:00:00 2001
From: Changqing Li <changqing.li@windriver.com>
Date: Thu, 14 Jan 2021 06:33:04 +0000
Subject: [PATCH] tests/meson.build: use relative path to refer to files
Fix error like:
Fatal error: can't create tests/ptimer-test.p/..._qemu-5.2.0_hw_core_ptimer.c.o: File name too long
when build path is too long, use meson.source_root() will make this
filename too long. Fixed by using relative path to refer to files
Upstream-Status: Submitted [send to qemu-devel]
Signed-off-by: Changqing Li <changqing.li@windriver.com>
---
tests/meson.build | 2 +-
1 files changed, 1 insertions(+), 1 deletion(-)
Index: qemu-6.0.0/tests/unit/meson.build
===================================================================
--- qemu-6.0.0.orig/tests/unit/meson.build
+++ qemu-6.0.0/tests/unit/meson.build
@@ -42,7 +42,7 @@ tests = {
'test-keyval': [testqapi],
'test-logging': [],
'test-uuid': [],
- 'ptimer-test': ['ptimer-test-stubs.c', meson.source_root() / 'hw/core/ptimer.c'],
+ 'ptimer-test': ['ptimer-test-stubs.c', '../../hw/core/ptimer.c'],
'test-qapi-util': [],
}