From: Jan Blunck Date: Thu, 5 Nov 2009 15:41:24 +0000 (+0100) Subject: Fix libust-initializer.o build X-Git-Tag: v1.9.1~827 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=c5a7fbbd654a42b2e9addea9ab035073e5d7a5fd;hp=2cd35d512eb5bc63c2f9ebc1b748a54cd03cc4b3;p=lttng-ust.git 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 8c4eb65c..cd81be0e 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 $@ $<