Changeset 932
- Timestamp:
- May 26, 2007, 1:11:48 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmakenew/kbuild.c
r927 r932 36 36 #include "dep.h" 37 37 #include "debug.h" 38 #ifdef WINDOWS32 39 # include "pathstuff.h" 40 #endif 38 41 39 42 #include "kbuild.h" … … 58 61 static const char *g_argv0 = ""; 59 62 /** The initial working directory. */ 60 static c onst char *g_pszInitialCwd = ".";63 static char *g_pszInitialCwd = "."; 61 64 62 65 … … 155 158 memcpy(pszTmp2, g_argv0, cch); 156 159 #ifdef HAVE_DOS_PATHS 157 while (pszSep >= pszTmp2 && *pszSep != '/' && *pszSep != '\\' && pszSep != ':')160 while (pszSep >= pszTmp2 && *pszSep != '/' && *pszSep != '\\' && *pszSep != ':') 158 161 #else 159 162 while (pszSep >= pszTmp2 && *pszSep != '/')
Note:
See TracChangeset
for help on using the changeset viewer.