Changeset 529
- Timestamp:
- Sep 17, 2006, 8:56:50 AM (19 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r525 r529 1 1 /* $Id$ */ 2 3 2006-09-17: 4 - kBuild/gmake: 5 o Fixed assertion in w32_fixcase when shell doesn't have a full path 6 and some other case. 2 7 3 8 2006-09-16: -
trunk/src/gmake/w32/pathstuff.c
r526 r529 207 207 char *p; 208 208 209 if (resolve) 209 if (resolve) { 210 210 _fullpath(w32_path, filename, sizeof (w32_path)); 211 else 211 w32_fixcase(w32_path); /* bird */ 212 } else 212 213 strncpy(w32_path, filename, sizeof (w32_path)); 213 214 w32_fixcase(w32_path); /* bird */215 214 216 215 for (p = w32_path; p && *p; p++)
Note:
See TracChangeset
for help on using the changeset viewer.