From: Joel Rosdahl Date: Fri, 16 Jul 2010 15:37:30 +0000 (+0200) Subject: Fix out-of-source builds by adding -I$(srcdir) X-Git-Tag: v3.1~178 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aa1e6b531f760d8034da7a6d75fb26c8e101176c;p=thirdparty%2Fccache.git Fix out-of-source builds by adding -I$(srcdir) This is needed when source files in subdirs need to include headers in the top dir. --- diff --git a/Makefile.in b/Makefile.in index c6ff97507..d36679133 100644 --- a/Makefile.in +++ b/Makefile.in @@ -10,7 +10,7 @@ installcmd = @INSTALL@ CC = @CC@ CFLAGS = @CFLAGS@ -CPPFLAGS = @CPPFLAGS@ -I. +CPPFLAGS = @CPPFLAGS@ -I. -I$(srcdir) LDFLAGS = @LDFLAGS@ EXEEXT = @EXEEXT@