Lines Matching defs:syspath
1142 * Add the directories from the colon-separated syspath to defSysIncPath.
1143 * After returning, the contents of syspath is unspecified.
1146 InitDefSysIncPath(char *syspath)
1156 if (syspath == NULL || syspath[0] == '\0')
1157 syspath = defsyspath;
1159 syspath = bmake_strdup(syspath);
1161 for (start = syspath; *start != '\0'; start = p) {
1179 if (syspath != defsyspath)
1180 free(syspath);
1313 char *syspath = getenv("MAKESYSPATH");
1464 InitDefSysIncPath(syspath);