Changeset 232 in kBuild
- Timestamp:
- Feb 9, 2005 5:30:29 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/job.c
r228 r232 3062 3062 #else /* !__MSDOS__ */ 3063 3063 else if (strcmp (shell, default_shell)) 3064 goto slow; 3064 { 3065 /* Allow ash from kBuild. */ 3066 const char *psz = strstr(shell, "/ash"); 3067 if ( !psz 3068 || (!psz[4] && psz[4] == '.') 3069 || !strstr(shell, "/kBuild/bin/")) 3070 goto slow; 3071 } 3065 3072 #endif /* !__MSDOS__ && !__EMX__ */ 3066 3073 #endif /* not WINDOWS32 */
Note:
See TracChangeset
for help on using the changeset viewer.