From: Jan Blunck Date: Thu, 5 Nov 2009 15:41:24 +0000 (+0100) Subject: Fix libust-initializer.o build X-Git-Tag: v0.1~51 X-Git-Url: https://git.liburcu.org/?p=ust.git;a=commitdiff_plain;h=c5a7fbbd654a42b2e9addea9ab035073e5d7a5fd Fix libust-initializer.o build For the include path the $top_builddir variable was used which should be the $top_srcdir instead. Signed-off-by: Jan Blunck --- diff --git a/Makefile.am b/Makefile.am index 8c4eb65..cd81be0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,4 +14,4 @@ libust.so: libust.ldscript.in $(SED) -e "s@\@FORMAT\@@${libust_FORMAT}@" -e "s@\@PATH\@@${libdir}@g" < $< > $@ libust-initializer.o: libust-initializer.c - $(CC) $(CFLAGS) -c -I$(top_builddir)/include -o $@ $< + $(CC) $(CFLAGS) -c -I$(top_srcdir)/include -o $@ $<