Fix: ignore C++ standard library headers in depend (#7578)

(cherry picked from commit 47fdbdd324)
This commit is contained in:
glx22
2019-05-10 14:22:07 +02:00
committed by Jonathan G Rennison
parent 6e28727fa4
commit a240a938a3

View File

@@ -507,6 +507,9 @@ private:
*/
const char *GeneratePath(const char *dirname, const char *filename, bool local)
{
/* Ignore C++ standard library headers. */
if (strchr(filename, '.') == nullptr) return nullptr;
if (local) {
if (access(filename, R_OK) == 0) return strdup(filename);