From c5a7fbbd654a42b2e9addea9ab035073e5d7a5fd Mon Sep 17 00:00:00 2001 From: Jan Blunck Date: Thu, 5 Nov 2009 16:41:24 +0100 Subject: [PATCH] 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 --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 $@ $< -- 2.34.1