Changeset 1172 for trunk/src/kmk/read.c


Ignore:
Timestamp:
Oct 1, 2007, 7:29:40 AM (18 years ago)
Author:
bird
Message:

just try open it and then check whether to keep quiet about it or not.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/read.c

    r1170 r1172  
    489489  /* open and read it into memory. ignore non-existing dependency files
    490490     or that we can't read. */
    491   if (!file_exists_p (name))
    492     return;
    493491  errno = 0;
    494492#ifdef O_BINARY
     
    499497  if (fd < 0)
    500498    {
     499      int err = errno;
     500      if (!file_exists_p (name))
     501        return;
    501502      error (f, "%s: %s", name, strerror (errno));
    502503      return;
Note: See TracChangeset for help on using the changeset viewer.