diff options
| author | Dylan Noblesmith <nobled@dreamwidth.org> | 2012-06-15 22:44:28 +0000 |
|---|---|---|
| committer | Dylan Noblesmith <nobled@dreamwidth.org> | 2012-06-30 19:58:37 +0000 |
| commit | b486e3aba5c7618b7f6311e82b5fdb2c93f2beab (patch) | |
| tree | d7d7f9c09a2bd1914041ef28010e794099ded471 /tests/client-test.c | |
| parent | tests: sort list of tests (diff) | |
| download | wayland-b486e3aba5c7618b7f6311e82b5fdb2c93f2beab.tar wayland-b486e3aba5c7618b7f6311e82b5fdb2c93f2beab.tar.gz wayland-b486e3aba5c7618b7f6311e82b5fdb2c93f2beab.tar.bz2 wayland-b486e3aba5c7618b7f6311e82b5fdb2c93f2beab.tar.lz wayland-b486e3aba5c7618b7f6311e82b5fdb2c93f2beab.tar.xz wayland-b486e3aba5c7618b7f6311e82b5fdb2c93f2beab.tar.zst wayland-b486e3aba5c7618b7f6311e82b5fdb2c93f2beab.zip | |
tests: fix make check for out-of-tree builds
It was failing with missing include files.
While here, destroy the ugly "../src/..." include
paths used in the tests that was just hacking around
this problem in the Makefile:
sed -i s/..\\/src\\/// tests/*.c
Diffstat (limited to 'tests/client-test.c')
| -rw-r--r-- | tests/client-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/client-test.c b/tests/client-test.c index dd2190f..5521510 100644 --- a/tests/client-test.c +++ b/tests/client-test.c @@ -31,7 +31,7 @@ #include <sys/types.h> #include <sys/stat.h> -#include "../src/wayland-server.h" +#include "wayland-server.h" #include "test-runner.h" struct client_destroy_listener { |
