From 00ed965e4a29f66666d2bf4372d2d6919c29664e Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 12 Feb 2016 14:52:25 +0200 Subject: Don't call realize() on non-existing header paths --- build2/cxx/compile.cxx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'build2/cxx/compile.cxx') diff --git a/build2/cxx/compile.cxx b/build2/cxx/compile.cxx index e4f2e7b..b924aa2 100644 --- a/build2/cxx/compile.cxx +++ b/build2/cxx/compile.cxx @@ -584,13 +584,15 @@ namespace build2 f = i->second / f; } - - // We used to just normalize the path but that could result in - // an invalid path (e.g., on CentOS 7 with Clang 3.4) because - // of the symlinks. So now we realize (i.e., realpath(3)) it - // instead. - // - f.realize (); + else + { + // We used to just normalize the path but that could result in + // an invalid path (e.g., on CentOS 7 with Clang 3.4) because + // of the symlinks. So now we realize (i.e., realpath(3)) it + // instead. + // + f.realize (); + } level6 ([&]{trace << "injecting " << f;}); -- cgit v1.1