From 9727555f30daf958f4817b28069ad36e871d65e8 Mon Sep 17 00:00:00 2001 From: Jan Blunck Date: Mon, 26 Oct 2009 14:59:35 +0100 Subject: [PATCH] Fix include path when compiling libust-initializer.c Otherwise it does not find the headers if they are not installed already. Signed-off-by: Jan Blunck --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index f881570..8c4eb65 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) -c $(CFLAGS) -o $@ $< + $(CC) $(CFLAGS) -c -I$(top_builddir)/include -o $@ $< -- 2.34.1