Changeset 1397 in kBuild
- Timestamp:
- Mar 16, 2008 9:32:19 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/kbuild.c
r1396 r1397 939 939 *psz = '\0'; 940 940 941 /* convert '..' path elements in the source to ' _.'. */941 /* convert '..' path elements in the source to 'dt'. */ 942 942 psz = pszDot; 943 943 while ((psz = memchr(psz, '.', cchSrc + 1 - (pszDot - psz))) != NULL) … … 960 960 ) 961 961 { 962 *psz = '_';963 psz += 2;962 *psz++ = 'd'; 963 *psz++ = 't'; 964 964 } 965 965 else
Note:
See TracChangeset
for help on using the changeset viewer.