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 <vamposdecampos@gmail.com>
This commit is contained in:
Alex Badea 2013-01-05 20:59:00 +02:00 committed by Sylvain Munaut
parent 854debc32c
commit 695e5fb049
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@
#include <osmocom/core/select.h>
#include <osmocom/core/linuxlist.h>
#include "../../config.h"
#include "../config.h"
static void main_timer_fired(void *data);
static void secondary_timer_fired(void *data);