|
From: Ivo R. <ir...@so...> - 2017-08-17 20:40:51
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=ba17add79a563bd1395dc05fa7309baffbcaa3ce commit ba17add79a563bd1395dc05fa7309baffbcaa3ce Author: Ivo Raisr <iv...@iv...> Date: Thu Aug 17 22:38:18 2017 +0200 Fix out-of-tree build on Solaris. Simply #include config.h with no path at all. Path by: Rob Boehne <ro...@da...> Diff: --- include/vki/vki-solaris.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/vki/vki-solaris.h b/include/vki/vki-solaris.h index 5b7bb21..5ab109c 100644 --- a/include/vki/vki-solaris.h +++ b/include/vki/vki-solaris.h @@ -42,7 +42,7 @@ #ifndef __VKI_SOLARIS_H #define __VKI_SOLARIS_H -#include "../../config.h" +#include "config.h" /* _XOPEN_SOURCE equal to at least '500' is required so that various system structures have all necessary attributes (for example struct msghdr). */ |