diff options
author | Paolo Bonzini | 2022-07-27 12:19:03 +0200 |
---|---|---|
committer | Paolo Bonzini | 2022-09-29 18:23:51 +0200 |
commit | 0e902f59c1f24f5779850d4ff6001c88bed2527c (patch) | |
tree | 555ee485201816e8079ece4ba842773ffa6e41c6 /tests/qtest/dbus-display-test.c | |
parent | watchdog: remove -watchdog option (diff) | |
download | qemu-0e902f59c1f24f5779850d4ff6001c88bed2527c.tar.gz qemu-0e902f59c1f24f5779850d4ff6001c88bed2527c.tar.xz qemu-0e902f59c1f24f5779850d4ff6001c88bed2527c.zip |
ui: fix path to dbus-display1.h
While the source directory is always included in the include path,
the corresponding directory in the build tree is not. Therefore,
custom_targets (e.g. ui/dbus-display1.h) must be referred to using
the full path.
This avoids a build failure when ui/dbus-chardev.c is not built as
a module:
In file included from ../ui/dbus-chardev.c:32:
../ui/dbus.h:34:10: fatal error: dbus-display1.h: No such file or directory
34 | #include "dbus-display1.h"
| ^~~~~~~~~~~~~~~~~
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests/qtest/dbus-display-test.c')
-rw-r--r-- | tests/qtest/dbus-display-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qtest/dbus-display-test.c b/tests/qtest/dbus-display-test.c index 8be5974763..cb1b62d1d1 100644 --- a/tests/qtest/dbus-display-test.c +++ b/tests/qtest/dbus-display-test.c @@ -3,7 +3,7 @@ #include <gio/gio.h> #include <gio/gunixfdlist.h> #include "libqtest.h" -#include "dbus-display1.h" +#include "ui/dbus-display1.h" static GDBusConnection* test_dbus_p2p_from_fd(int fd) |