Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 52755
Collapse All | Expand All

(-)gcc/cppfiles.c (-2 / +11 lines)
Lines 329-336 find_file_in_dir (cpp_reader *pfile, _cp Link Here
329
329
330
  if (file->err_no != ENOENT)
330
  if (file->err_no != ENOENT)
331
    {
331
    {
332
      open_file_failed (pfile, file);
332
      if (file->err_no == EACCES)
333
      return true;
333
        {
334
          /* make EACCES non-fatal to fix bug ?? (glibc 2.3.3 on reiser4) */
335
          cpp_errno (pfile, CPP_DL_WARNING, file->path);
336
          return false;
337
        }
338
      else
339
        {
340
          open_file_failed (pfile, file);
341
          return true;
342
        }
334
    }
343
    }
335
344
336
  free (path);
345
  free (path);

Return to bug 52755