Changeset 2104 for trunk/src/lib/kDep.c
- Timestamp:
- Nov 26, 2008, 2:52:53 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/kDep.c
r2019 r2104 170 170 * 'Optimizes' and corrects the dependencies. 171 171 */ 172 void depOptimize(int fFixCase )172 void depOptimize(int fFixCase, int fQuiet) 173 173 { 174 174 /* … … 226 226 if (stat(pszFilename, &s)) 227 227 { 228 fprintf(stderr, "kDep: Skipping '%s' - %s!\n", pszFilename, strerror(errno)); 228 if ( !fQuiet 229 || errno != ENOENT 230 || ( pszFilename[0] != '/' 231 && pszFilename[0] != '\\' 232 && ( !isalpha(pszFilename[0]) 233 || pszFilename[1] != ':' 234 || ( pszFilename[2] != '/' 235 && pszFilename[2] != '\\'))) 236 ) 237 fprintf(stderr, "kDep: Skipping '%s' - %s!\n", pszFilename, strerror(errno)); 229 238 continue; 230 239 }
Note:
See TracChangeset
for help on using the changeset viewer.