Fix: ignore C++ standard library headers in depend (#7578)
(cherry picked from commit 47fdbdd324
)
This commit is contained in:

committed by
Jonathan G Rennison

parent
6e28727fa4
commit
a240a938a3
@@ -507,6 +507,9 @@ private:
|
|||||||
*/
|
*/
|
||||||
const char *GeneratePath(const char *dirname, const char *filename, bool local)
|
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 (local) {
|
||||||
if (access(filename, R_OK) == 0) return strdup(filename);
|
if (access(filename, R_OK) == 0) return strdup(filename);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user