Include bscconfig.h without ../ for the srcdir != build dir case
diff --git a/openbsc/src/Makefile.am b/openbsc/src/Makefile.am
index 5dac9de..a21cb80 100644
--- a/openbsc/src/Makefile.am
+++ b/openbsc/src/Makefile.am
@@ -1,4 +1,4 @@
-INCLUDES = $(all_includes) -I$(top_srcdir)/include
+INCLUDES = $(all_includes) -I$(top_srcdir)/include -I$(top_builddir)
 AM_CFLAGS=-Wall $(LIBOSMOCORE_CFLAGS)
 AM_LDFLAGS = $(LIBOSMOCORE_LIBS)
 
diff --git a/openbsc/src/bsc_init.c b/openbsc/src/bsc_init.c
index 6786720..957ccfb 100644
--- a/openbsc/src/bsc_init.c
+++ b/openbsc/src/bsc_init.c
@@ -33,7 +33,7 @@
 #include <openbsc/signal.h>
 #include <osmocore/talloc.h>
 
-#include "../bscconfig.h"
+#include "bscconfig.h"
 
 
 /* global pointer to the gsm network data structure */