Ticket #52828: r241919.diff
File r241919.diff, 967 bytes (added by jwhowarth, 8 years ago) |
---|
-
gcc/incpath.c
253 253 254 254 if (stat (cur->name, &st)) 255 255 { 256 /* Dirs that don't exist are silently ignored, unless verbose. */ 257 if (errno != ENOENT) 256 /* Dirs that don't exist or have denied permissions are 257 silently ignored, unless verbose. */ 258 if ((errno != ENOENT) && (errno != EPERM)) 258 259 cpp_errno (pfile, CPP_DL_ERROR, cur->name); 259 260 else 260 261 { -
gcc/ChangeLog
1 2016-11-06 Jack Howarth <howarth.at.gcc@gmail.com> 2 3 PR driver/78206 4 * incpath.c: (remove_dup(): Also silently ignore EPERM. 5 1 6 2016-11-07 Martin Jambor <mjambor@suse.cz> 2 7 3 8 * tree.c (verify_type_variant): Use pointer comparison to check that