Lines Matching defs:syspath
1160 * Add the directories from the colon-separated syspath to defSysIncPath.
1161 * After returning, the contents of syspath is unspecified.
1164 InitDefSysIncPath(char *syspath)
1174 if (syspath == NULL || syspath[0] == '\0')
1175 syspath = defsyspath;
1177 syspath = bmake_strdup(syspath);
1179 for (start = syspath; *start != '\0'; start = p) {
1197 if (syspath != defsyspath)
1198 free(syspath);
1331 char *syspath = getenv("MAKESYSPATH");
1485 InitDefSysIncPath(syspath);