From 695e5fb049822490a1695277d35e3006f6fd3e27 Mon Sep 17 00:00:00 2001 From: Alex Badea Date: Sat, 5 Jan 2013 20:59:00 +0200 Subject: tests/timer: tweak path to config.h When building out-of-srcdir, "../../config.h" fails to reach config.h because the compiler is invoked in $builddir/tests/, not $builddir/tests/timer/. Use "../config.h" instead; this also works for in-srcdir builds. Signed-off-by: Alex Badea --- tests/timer/timer_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/timer') diff --git a/tests/timer/timer_test.c b/tests/timer/timer_test.c index ba3127d4..bb9a177c 100644 --- a/tests/timer/timer_test.c +++ b/tests/timer/timer_test.c @@ -33,7 +33,7 @@ #include #include -#include "../../config.h" +#include "../config.h" static void main_timer_fired(void *data); static void secondary_timer_fired(void *data); -- cgit v1.2.3